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

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

$x=0;
while (<>) {
  chomp;
  next if !/savetxt/;
  s/.+?(ngram)/$1/i;
  $x++;
  print "STDERR_$x=$_\n";
}