Welcome to mirror list, hosted at ThFree Co, Russian Federation.

run-wade.perl « support « ems « scripts - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25cda3bb3455d0ac59c8e1f97ee985843f8c0a6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env perl 

use warnings;
use strict;
use File::Temp qw/ tempfile tempdir /;

if (scalar(@ARGV) != 7) {
  print STDERR "Usage: run-wade.perl wade-script filtered-dir input reference alignment output wade-output\n";
  exit 1;
}

my ($wade_script, $filtered_dir, $input, $reference, $alignment, $output, $wade_output) = @ARGV;
my ($cfh, $cfile) = tempfile();

#unless ($phrase_table =~ /.*\.gz/){ $phrase_table .= ".gz";}

print $cfh "phrase-table=$filtered_dir/phrase-table.0-0.1.1.gz\n";
print $cfh "fr_test=$input\n";
print $cfh "en_test=$reference\n";
print $cfh "fren_align_test=$alignment\n";
print $cfh "translation_details=$output.details\n";

print $cfh "candidatealign_out=$wade_output.candalign\n";
print $cfh "annotatedalign_out=$wade_output.annotalign\n";
print $cfh "transspans_out=$wade_output.transspans\n";
print $cfh "wade_output=$wade_output\n";
close $cfh;

print $cfile . "\n";

system("python $wade_script $cfile");