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:
authorMatous Machacek <machacekmatous@gmail.com>2012-03-02 17:16:05 +0400
committerMatous Machacek <machacekmatous@gmail.com>2012-03-02 17:16:05 +0400
commit01f8fee238ffc1996112c3b969f57b89c361d0ba (patch)
tree293d3bd7b7ff627fd4ee21144eb16a865ffcbca7 /mert/mert.cpp
parentd5c78d19dab3b5e3c47952ca8721f35c1bd56743 (diff)
Fix mert.cpp to work with InterpolatedScorer
Diffstat (limited to 'mert/mert.cpp')
-rwxr-xr-xmert/mert.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/mert/mert.cpp b/mert/mert.cpp
index 6f80709cb..20940c4bf 100755
--- a/mert/mert.cpp
+++ b/mert/mert.cpp
@@ -343,6 +343,8 @@ int main(int argc, char **argv)
data.load(FeatureDataFiles.at(i), ScoreDataFiles.at(i));
}
+ TheScorer->setScoreData(data.getScoreData().get());
+
//ADDED_BY_TS
data.remove_duplicates();
//END_ADDED