diff --git a/eval.py b/eval.py index f4dea7fa98e9aa02106a54c5ab72028e924b23e6..34eb24e5470fcfe4b0cdcb7a707508be81793c76 100755 --- a/eval.py +++ b/eval.py @@ -46,6 +46,7 @@ def write_desc(data_dir): """Write a YAML description of the evaluation into result_dir""" desc_file_path = data_dir / 'desc.yml' with open(desc_file_path, 'w', encoding='utf-8') as desc_file: + print(f'artifact-desc: {ARTIFACT_DESC}', file=desc_file) print(f'start: {start_time.isoformat()}', file=desc_file) print(f'argv: {sys.argv}', file=desc_file) print(f'client-args: {ARGS}', file=desc_file)