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
diff options
context:
space:
mode:
authorEva Hasler <ehasler@saxnot.inf.ed.ac.uk>2012-03-27 02:01:36 +0400
committerEva Hasler <ehasler@saxnot.inf.ed.ac.uk>2012-03-27 02:01:36 +0400
commit74b5907ae756a8d7708ef709965e3d2f80d22040 (patch)
treecc1d2084c9e3492151b69eab9c53c008cd3c5020 /scripts
parentf6e60effba4cf191941047550444b1a0ba237c89 (diff)
add sparse producers to mert abbreviation list
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/training/mert-moses.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/training/mert-moses.pl b/scripts/training/mert-moses.pl
index ef5890385..0a9182f14 100755
--- a/scripts/training/mert-moses.pl
+++ b/scripts/training/mert-moses.pl
@@ -73,7 +73,7 @@ $SCRIPTS_ROOTDIR = $ENV{"SCRIPTS_ROOTDIR"} if defined($ENV{"SCRIPTS_ROOTDIR"});
# moses.ini file uses FULL names for lambdas, while this training script
# internally (and on the command line) uses ABBR names.
my @ABBR_FULL_MAP = qw(d=weight-d lm=weight-l tm=weight-t w=weight-w
- g=weight-generation lex=weight-lex I=weight-i);
+ g=weight-generation lex=weight-lex I=weight-i dlm=weight-dlm pp=weight-pp wt=weight-wt pb=weight-pb lex=weight-lex glm=weight-glm);
my %ABBR2FULL = map {split/=/,$_,2} @ABBR_FULL_MAP;
my %FULL2ABBR = map {my ($a, $b) = split/=/,$_,2; ($b, $a);} @ABBR_FULL_MAP;