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

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