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

filter-stderr « mert.hgdecode-denseonly « tests - github.com/moses-smt/moses-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a7b4a3ff55d8270060be3b6606717cc4b2b9fe7 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl

$x=0;
while (<>) {
  chomp;
  next if !/^WEIGHTS/;
  $x++;
  print "STDERR_$x=$_\n";
}