Skip to content

Commit 3212115

Browse files
committed
add flags for saving results files
1 parent ea586fe commit 3212115

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

scoring/score_submissions.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,16 @@
4646
'self_tuning_ruleset',
4747
False,
4848
'Whether to score on self-tuning ruleset or externally tuned ruleset')
49+
flags.DEFINE_string(
50+
'save_results_to_filename',
51+
None,
52+
'Filename to save the processed results that are fed into the performance profile functions'
53+
)
54+
flags.DEFINE_boolean(
55+
'load_results_from_filename',
56+
None,
57+
'Filename to load processed results from that are fed into performance profile functions'
58+
)
4959
FLAGS = flags.FLAGS
5060

5161

0 commit comments

Comments
 (0)