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/moses
diff options
context:
space:
mode:
authorBarry Haddow <barry.haddow@gmail.com>2011-11-22 18:40:33 +0400
committerBarry Haddow <barry.haddow@gmail.com>2011-11-22 18:40:33 +0400
commit5948912d1d0e3d6bdb55fd943b1533a032d8e3fc (patch)
treeea94e0597d72357b8baf5ac67ed37a2742fd05eb /moses
parenta8777ac5d2d479a5778d33b60599dc763224fdf8 (diff)
Fix name of backoff parameter
Diffstat (limited to 'moses')
-rw-r--r--moses/src/Parameter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/src/Parameter.cpp b/moses/src/Parameter.cpp
index ef303deb8..0dcee2992 100644
--- a/moses/src/Parameter.cpp
+++ b/moses/src/Parameter.cpp
@@ -43,7 +43,7 @@ Parameter::Parameter()
AddParam("beam-threshold", "b", "threshold for threshold pruning");
AddParam("config", "f", "location of the configuration file");
AddParam("continue-partial-translation", "cpt", "start from nonempty hypothesis");
- AddParam("decode-graph-backoff", "dpb", "only use subsequent decoding paths for unknown spans of given length");
+ AddParam("decoding-graph-backoff", "dpb", "only use subsequent decoding paths for unknown spans of given length");
AddParam("drop-unknown", "du", "drop unknown words instead of copying them");
AddParam("disable-discarding", "dd", "disable hypothesis discarding");
AddParam("factor-delimiter", "fd", "specify a different factor delimiter than the default");