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:
authorHieu Hoang <hieuhoang@gmail.com>2015-01-08 14:49:53 +0300
committerHieu Hoang <hieuhoang@gmail.com>2015-01-08 14:49:53 +0300
commit13ec6060b0d7ef600f056c15dd249d190cc16b25 (patch)
tree6a9d864e791877b08c510888cceed50476a0bc7f /moses/ScoreComponentCollection.cpp
parent5336598734985fa850bb007f64d01ce4090767bf (diff)
move mira code to contrib
Diffstat (limited to 'moses/ScoreComponentCollection.cpp')
-rw-r--r--moses/ScoreComponentCollection.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/moses/ScoreComponentCollection.cpp b/moses/ScoreComponentCollection.cpp
index 2903b112c..19c7475b6 100644
--- a/moses/ScoreComponentCollection.cpp
+++ b/moses/ScoreComponentCollection.cpp
@@ -309,8 +309,7 @@ void ScoreComponentCollection::OutputAllFeatureScores(std::ostream &out) const
const vector<const StatefulFeatureFunction*>& sff = StatefulFeatureFunction::GetStatefulFeatureFunctions();
for( size_t i=0; i<sff.size(); i++ ) {
const StatefulFeatureFunction *ff = sff[i];
- if (ff->GetScoreProducerDescription() != "BleuScoreFeature"
- && ff->IsTuneable()) {
+ if (ff->IsTuneable()) {
OutputFeatureScores( out, ff, lastName );
}
}