mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-29 15:04:05 +03:00
d4083b1119
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@2557 1f5c12ca-751b-0410-a591-d2e778427230
18 lines
545 B
Perl
18 lines
545 B
Perl
#! /usr/bin/perl -w
|
|
|
|
use strict;
|
|
my $script_dir; BEGIN { use Cwd qw/ abs_path /; use File::Basename; $script_dir = dirname(abs_path($0)); push @INC, $script_dir; }
|
|
use MosesScriptsRegressionTesting;
|
|
|
|
my $data_dir=$ARGV[0]; shift(@ARGV);
|
|
my $conf=$ARGV[0]; shift(@ARGV);
|
|
|
|
print STDERR "configuration file: |$conf|\n";
|
|
print STDERR "data_dir: |$data_dir|\n";
|
|
|
|
my $local_moses_ini = MosesScriptsRegressionTesting::get_localized_moses_ini($conf, $data_dir);
|
|
|
|
print STDERR "local_moses_ini: |$local_moses_ini|\n";
|
|
print STDOUT "$local_moses_ini\n";
|
|
|