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
path: root/moses
diff options
context:
space:
mode:
authormaurocettolo <maurocettolo@1f5c12ca-751b-0410-a591-d2e778427230>2008-08-04 20:55:21 +0400
committermaurocettolo <maurocettolo@1f5c12ca-751b-0410-a591-d2e778427230>2008-08-04 20:55:21 +0400
commit90e3107ef4c824949427da636a5c8f4366db6fa4 (patch)
treef5506dbbca17cf8471297368ef236e2a40f1e432 /moses
parent9e61900fad22c87341b4690c202c57f083eb1402 (diff)
just commented a print on stderr
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1871 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'moses')
-rw-r--r--moses/src/LanguageModelIRST.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/src/LanguageModelIRST.cpp b/moses/src/LanguageModelIRST.cpp
index d3e09705c..08da011d5 100644
--- a/moses/src/LanguageModelIRST.cpp
+++ b/moses/src/LanguageModelIRST.cpp
@@ -191,7 +191,7 @@ float LanguageModelIRST::GetValue(const vector<const Word*> &contextFactor, Stat
cout << "i=" << i << " -> " << (*contextFactor[i])[factorType]->GetString() << "\n";
#endif
int lmId = GetLmID((*contextFactor[i])[factorType]->GetString());
- cerr << (*contextFactor[i])[factorType]->GetString() << " = " << lmId;
+ // cerr << (*contextFactor[i])[factorType]->GetString() << " = " << lmId;
m_lmtb_ng->pushc(lmId);
}