Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mgiza.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralvations <alvations@gmail.com>2016-11-22 10:46:54 +0300
committerGitHub <noreply@github.com>2016-11-22 10:46:54 +0300
commitb8913d95805f676a267754fd0cecaf9aad2b8f35 (patch)
tree8278e249668adccc0161662d80f4eeba05740dbb
parent26d1681c03c41be68c793427af840da068201692 (diff)
Typo in warning
-rw-r--r--mgizapp/src/getSentence.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mgizapp/src/getSentence.cpp b/mgizapp/src/getSentence.cpp
index 245cdc5..b3a0cab 100644
--- a/mgizapp/src/getSentence.cpp
+++ b/mgizapp/src/getSentence.cpp
@@ -205,7 +205,7 @@ int sentenceHandler::getNextSentence(sentPair& sent, vcbList* elist, vcbList* fl
cout << "Reading more sentence pairs into memory ... \n";
while((noSentInBuffer < TRAIN_BUFFER_SIZE) && readNextSentence(s)) {
if ((s.fSent.size()-1) > (MAX_FERTILITY-1) * (s.eSent.size()-1)) {
- cerr << "WARNING: The following sentence pair has source/target sentence length ration more than\n"<<
+ cerr << "WARNING: The following sentence pair has source/target sentence length ratio more than\n"<<
"the maximum allowed limit for a source word fertility\n"<<
" source length = " << s.eSent.size()-1 << " target length = " << s.fSent.size()-1 <<
" ratio " << double(s.fSent.size()-1)/ (s.eSent.size()-1) << " ferility limit : " <<