Skip to content

Commit

Permalink
added hint
Browse files Browse the repository at this point in the history
  • Loading branch information
gavin-ho1 committed Aug 9, 2024
1 parent 78ef9c2 commit 3f1d96a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions experiments/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,8 +403,15 @@
})

#Fetch experiment information from params.py and utils.py, loop through the various lists and dictionaries to pull out all possible combinations of experiments
chall_list = challenge_dicts.keys()

#Print Hint
print(red(bold('To make an experiment:')))
print(red(' python -m experiments make --challenge <challenge> --system <system> --algo <algo>\n'))

#Print Title
print(cyan(bold('List of all possible experiments that can be made:')))

chall_list = challenge_dicts.keys()
for challenge in chall_list:
_, sys_dict = challenge_dicts[challenge]
sys_list = sys_dict.keys()
Expand All @@ -420,7 +427,7 @@
if system != 'default':
out_str += f'--system = {system} '
if algo != 'default':
out_str += f'--algo = {algo}'
out_str += f'--algo = {algo} '

pr = True
for experiment in experiment_list:
Expand Down

0 comments on commit 3f1d96a

Please sign in to comment.