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:
authorTetsuo Kiso <tetsuo-s@is.naist.jp>2011-12-08 21:39:02 +0400
committerTetsuo Kiso <tetsuo-s@is.naist.jp>2011-12-08 21:39:02 +0400
commitcb5213ac438abb24a75dfdff5f7b8b7558518267 (patch)
treeab1805f17fb7fe82483ea35ce02df55a2818629f /scripts
parentef76d89f38de18cce58f1a189b99ebf1052faca1 (diff)
Oops, forgot to move 'use strict' to the beginning of the script.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/training/mert-moses.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/training/mert-moses.pl b/scripts/training/mert-moses.pl
index 7744ed28f..a70a42929 100755
--- a/scripts/training/mert-moses.pl
+++ b/scripts/training/mert-moses.pl
@@ -151,10 +151,9 @@ my $prev_aggregate_nbl_size = -1; # number of previous step to consider when loa
# -1 means all previous, i.e. from iteration 1
# 0 means no previous data, i.e. from actual iteration
# 1 means 1 previous data , i.e. from the actual iteration and from the previous one
- # and so on
+ # and so on
my $maximum_iterations = 25;
-use strict;
use Getopt::Long;
GetOptions(
"working-dir=s" => \$___WORKING_DIR,