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/lm
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2015-04-01 04:51:38 +0300
committerKenneth Heafield <github@kheafield.com>2015-04-01 04:51:38 +0300
commit6626d59cfceb8f8aa980c731ae62b9a375cefa2e (patch)
treefee016ab7d86eb0867e1ca1189c7e77c97f60152 /lm
parent1a61e1405f881d0de001695de578e28d177c8781 (diff)
Less error-like complaint when substituting fallback discounts / Matthias Huck
Diffstat (limited to 'lm')
-rw-r--r--lm/builder/adjust_counts.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lm/builder/adjust_counts.cc b/lm/builder/adjust_counts.cc
index fa77d45a7..2dd3cef1b 100644
--- a/lm/builder/adjust_counts.cc
+++ b/lm/builder/adjust_counts.cc
@@ -64,7 +64,7 @@ class StatCollector {
case THROW_UP:
throw;
case COMPLAIN:
- std::cerr << e.what() << " Substituting fallback discounts D1=" << config.fallback.amount[1] << " D2=" << config.fallback.amount[2] << " D3+=" << config.fallback.amount[3] << std::endl;
+ std::cerr << "Substituting fallback discounts for order " << i << ": D1=" << config.fallback.amount[1] << " D2=" << config.fallback.amount[2] << " D3+=" << config.fallback.amount[3] << std::endl;
case SILENT:
break;
}