more verbose=0

git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1233 1f5c12ca-751b-0410-a591-d2e778427230
This commit is contained in:
hieuhoang1972 2007-02-22 23:54:59 +00:00
parent c58393a4b4
commit a1072b9a7a
2 changed files with 5 additions and 2 deletions

View File

@ -33,6 +33,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#include "FactorCollection.h"
#include "Phrase.h"
#include "InputFileStream.h"
#include "StaticData.h"
using namespace std;
@ -83,7 +84,7 @@ bool LanguageModelIRST::Load(const std::string &filePath
m_unknownId = m_lmtb->dict->oovcode();
CreateFactors(factorCollection);
TRACE_ERR( "IRST: m_unknownId=" << m_unknownId << std::endl);
VERBOSE(1, "IRST: m_unknownId=" << m_unknownId << std::endl);
//install caches
m_lmtb->init_probcache();

View File

@ -31,6 +31,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#include "Util.h"
#include "FactorCollection.h"
#include "Phrase.h"
#include "StaticData.h"
using namespace std;
LanguageModelSRI::LanguageModelSRI(bool registerScore, ScoreIndexManager &scoreIndexManager)
@ -68,7 +70,7 @@ bool LanguageModelSRI::Load(const std::string &filePath
}
else
{
TRACE_ERR("warning/failed loading language model" << endl);
VERBOSE(1, "warning/failed loading language model" << endl);
}
// LM can be ok, just outputs warnings
CreateFactors(factorCollection);