summaryrefslogtreecommitdiff
path: root/decoder/cdec.cc
diff options
context:
space:
mode:
authorgraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-06-25 00:42:45 +0000
committergraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-06-25 00:42:45 +0000
commite45f99a03c6d8e0cf8453aa9419920d0faf741ca (patch)
tree8e22ccff0f37c0490304b4e57ecfd0efd6e68557 /decoder/cdec.cc
parent4cf94b582ea50d2799533c3545eb16845f4795da (diff)
allow --beam_prune=0
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@26 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'decoder/cdec.cc')
-rw-r--r--decoder/cdec.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoder/cdec.cc b/decoder/cdec.cc
index 114a248d..1d7b43f0 100644
--- a/decoder/cdec.cc
+++ b/decoder/cdec.cc
@@ -79,8 +79,8 @@ void InitCommandLine(int argc, char** argv, po::variables_map* conf) {
("show_expected_length", "Show the expected translation length under the model")
("show_partition,z", "Compute and show the partition (inside score)")
("show_cfg_search_space", "Show the search space as a CFG")
- ("prelm_beam_prune", po::value<double>(), "Prune paths from -LM forest before LM rescoring")
- ("beam_prune", po::value<double>(), "Prune paths from +LM forest")
+ ("prelm_beam_prune", po::value<double>(), "Prune paths from -LM forest before LM rescoring, keeping paths within exp(alpha>=0)")
+ ("beam_prune", po::value<double>(), "Prune paths from +LM forest, keep paths within exp(alpha>=0)")
("lexalign_use_null", "Support source-side null words in lexical translation")
("tagger_tagset,t", po::value<string>(), "(Tagger) file containing tag set")
("csplit_output_plf", "(Compound splitter) Output lattice in PLF format")