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

filter-stdout.pl « chart.show-weights.target-syntax « tests « regression-testing - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf007545eb59ad37a2c15b54f763372b9baf6660 (plain)
1
2
3
4
5
6
7
#!/usr/bin/perl
$x=0;
while (<>) {
  chomp;
  $x++;
  print "WEIGHT_$x=$_\n";
}