diff options
author | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2014-05-08 12:11:16 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2014-05-08 12:11:16 -0400 |
commit | 3cec93d6df6190c486fc57dfe25661b24d9fa75e (patch) | |
tree | 710d7eb9a223b0c05387653ecff75bda12853e24 /realtime | |
parent | 77938f83c0b450a6a9229414dc415608fde5bfb9 (diff) | |
parent | 6d81c38a9abbd213813e9ce247af911132a1aa99 (diff) |
Merge branch 'master' of github.com:redpony/cdec
Diffstat (limited to 'realtime')
-rwxr-xr-x | realtime/mkconfig.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/realtime/mkconfig.py b/realtime/mkconfig.py index 71944080..f9938051 100755 --- a/realtime/mkconfig.py +++ b/realtime/mkconfig.py @@ -59,9 +59,14 @@ def main(): shutil.copy(weights_final, os.path.join(output_d, 'weights.final')) # other options - # TODO: automatically set some things here - with open(os.path.join(output_d, 'rt.ini'), 'w') as rt_ini: - pass + rt_ini = os.path.join(output_d, 'rt.ini') + with open(rt_ini, 'w') as out: + if libcdec_ff_hpyplm_so and corpus_hpyplm: + out.write('hpyplm=true\n') + else: + out.write('hpyplm=false\n') + out.write('metric=ibm_bleu\n') + sys.stderr.write('IMPORTANT: add any additional options such as metric=meteor to {}\n'.format(rt_ini)) if __name__ == '__main__': main() |