Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Germann <Ulrich.Germann@gmail.com>2015-12-02 23:43:56 +0300
committerUlrich Germann <Ulrich.Germann@gmail.com>2015-12-02 23:43:56 +0300
commit5a6328644721e05141593a1d3e0fd378a8d96561 (patch)
tree8b0146c8960697658cd40ebf423888c11d7a5416 /moses/Syntax
parent33f4e9391537728d2e1e1638611f99db42e91567 (diff)
Code cleanup and bug fix in (Base)Manager::OutputSurface:
Mark-up of unkown words in output.
Diffstat (limited to 'moses/Syntax')
-rw-r--r--moses/Syntax/Manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/Syntax/Manager.cpp b/moses/Syntax/Manager.cpp
index 755513c7b..e30e818cf 100644
--- a/moses/Syntax/Manager.cpp
+++ b/moses/Syntax/Manager.cpp
@@ -107,7 +107,7 @@ void Manager::OutputNBestList(OutputCollector *collector,
// print the translation ID, surface factors, and scores
out << translationId << " ||| ";
- OutputSurface(out, outputPhrase, outputFactorOrder, false);
+ OutputSurface(out, outputPhrase); // , outputFactorOrder, false);
out << " ||| ";
bool with_labels = options().nbest.include_feature_labels;
derivation.scoreBreakdown.OutputAllFeatureScores(out, with_labels);