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:31 +0300
committerGitHub <noreply@github.com>2016-11-22 10:46:31 +0300
commit26d1681c03c41be68c793427af840da068201692 (patch)
tree9b4a73b8ad4599f22ed268faf30336cfb89243cc
parentfe9e5ae9ba34f2434a7399991ae8d20b28bc43aa (diff)
Typo in warning
-rw-r--r--experimental/bidirectional/src/getSentence.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/experimental/bidirectional/src/getSentence.cpp b/experimental/bidirectional/src/getSentence.cpp
index 374f88e..7ad8ad4 100644
--- a/experimental/bidirectional/src/getSentence.cpp
+++ b/experimental/bidirectional/src/getSentence.cpp
@@ -209,7 +209,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 : " <<