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:
authorBarry Haddow <barry.haddow@gmail.com>2011-11-16 18:54:23 +0400
committerBarry Haddow <barry.haddow@gmail.com>2011-11-16 18:54:23 +0400
commit79de3c8699153aa759f584825f4f5a75e3f9c08c (patch)
tree9e1f4b862ef7190b51093a5d51a6798e071d100e /mert/ScoreDataIterator.cpp
parent0a2e0f44a6d5fa2755b6f3894a55aa608272987d (diff)
Complete initial version of pro extractor
Diffstat (limited to 'mert/ScoreDataIterator.cpp')
-rw-r--r--mert/ScoreDataIterator.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/mert/ScoreDataIterator.cpp b/mert/ScoreDataIterator.cpp
index c062cc52d..4cac63c54 100644
--- a/mert/ScoreDataIterator.cpp
+++ b/mert/ScoreDataIterator.cpp
@@ -46,7 +46,6 @@ void ScoreDataIterator::readNext() {
m_in->ReadLine(); //ignore rest of line
for (size_t i = 0; i < count; ++i) {
StringPiece line = m_in->ReadLine();
- cerr << line << endl;
m_next.push_back(ScoreDataItem());
for (TokenIter<AnyCharacter, true> token(line,AnyCharacter(" \t")); token; ++token) {
float value = ParseFloat(*token);