fix n-best output of sparse features for hiero models

(weren't found by regex in mert-moses.pl, line 1327)
This commit is contained in:
Rico Sennrich 2013-06-06 12:19:14 +02:00
parent 081710ed4c
commit 3a5cae51d3

View File

@ -442,7 +442,7 @@ void IOWrapper::OutputFeatureScores( std::ostream& out, const ScoreComponentColl
else {
const FVector scores = features.GetVectorForProducer( ff );
for(FVector::FNVmap::const_iterator i = scores.cbegin(); i != scores.cend(); i++)
out << " " << i->first << ": " << i->second;
out << " " << i->first << "= " << i->second;
}
}