diff options
author | Michael Denkowski <mdenkows@cs.cmu.edu> | 2014-02-26 12:15:28 -0800 |
---|---|---|
committer | Michael Denkowski <mdenkows@cs.cmu.edu> | 2014-02-26 12:15:28 -0800 |
commit | 53f4328e5e5cc72c6d483783edb85ba16b414caf (patch) | |
tree | 12ff5bf7d84ecb7293e4ab1f52dc4fb90635af18 | |
parent | 6abe55d22e18fc1fc8676a782e38e8340d1c2e86 (diff) |
Use same number of jobs for decoding.
-rwxr-xr-x | training/mira/mira.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/training/mira/mira.py b/training/mira/mira.py index 77f2f35f..ca549ed8 100755 --- a/training/mira/mira.py +++ b/training/mira/mira.py @@ -242,7 +242,7 @@ def evaluate(testset, weights, ini, script_dir, out_dir): evaluator = '{}/../utils/decode-and-evaluate.pl'.format(script_dir) try: p = subprocess.Popen([evaluator, '-c', ini, '-w', weights, '-i', testset, - '-d', out_dir], stdout=subprocess.PIPE) + '-d', out_dir, '--jobs', args.jobs], stdout=subprocess.PIPE) results, err = p.communicate() bleu, results = results.split('\n',1) except subprocess.CalledProcessError: |