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 | 5935df4adc4d0b8864ae0f9a65b8f6453a11bb45 (patch) | |
tree | 0b7b9bd3f872722d0715c8dc52bd6a38ffc4961f | |
parent | 4f0076aa8b9371ac5696752465cffe306fccbfd5 (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: |