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:
authorphikoehn <pkoehn@inf.ed.ac.uk>2013-05-17 11:37:29 +0400
committerphikoehn <pkoehn@inf.ed.ac.uk>2013-05-17 11:37:29 +0400
commit4cdffc8a891a3004a0102aa77ae26ceb91a1e881 (patch)
tree815350e8007c863a098d04689bd35177cc61569b /mert/Data.cpp
parent13991fc88fc6184139db46aa306789d855ef54cd (diff)
fixes for sparse feature handling
Diffstat (limited to 'mert/Data.cpp')
-rw-r--r--mert/Data.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mert/Data.cpp b/mert/Data.cpp
index 3f91c1376..1efa080a2 100644
--- a/mert/Data.cpp
+++ b/mert/Data.cpp
@@ -212,7 +212,7 @@ void Data::InitFeatureMap(const string& str) {
while (!buf.empty()) {
getNextPound(buf, substr);
- // string ending with ":" are skipped, because they are the names of the features
+ // string ending with "=" are skipped, because they are the names of the features
if (!EndsWith(substr, "=")) {
stringstream ss;
ss << tmp_name << "_" << tmp_index << " ";