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:
authorMatthias Huck <huck@i6.informatik.rwth-aachen.de>2015-04-23 20:13:02 +0300
committerMatthias Huck <huck@i6.informatik.rwth-aachen.de>2015-04-23 20:13:02 +0300
commitf24f31f965abd3b3e02b48f7aaaf17a8003a4b8f (patch)
tree469a534918c66b69083d4803f87eee46f3621d31 /moses/server/TranslationRequest.cpp
parent388e180afc77409558f46f4899815163a09a8681 (diff)
n-best list creation in phrase-based decoding: improved efficiency with sparse features
Diffstat (limited to 'moses/server/TranslationRequest.cpp')
-rw-r--r--moses/server/TranslationRequest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/server/TranslationRequest.cpp b/moses/server/TranslationRequest.cpp
index 1953a711f..a1daf8393 100644
--- a/moses/server/TranslationRequest.cpp
+++ b/moses/server/TranslationRequest.cpp
@@ -166,7 +166,7 @@ namespace MosesServer
{
// should the score breakdown be reported in a more structured manner?
ostringstream buf;
- path->GetScoreBreakdown().OutputAllFeatureScores(buf);
+ path->GetScoreBreakdown()->OutputAllFeatureScores(buf);
nBestXmlItem["fvals"] = xmlrpc_c::value_string(buf.str());
}