File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 1313from absl import flags
1414import jax
1515
16- SUBMISSION_PATH = 'submissions_algorithms/submissions/self_tuning/schedule_free_adamw_v2/submission.py'
17- EXPERIMENT_DIR = 'submissions/rolling_leaderboard/self_tuning/schedule_free_adamw_v2'
18- TUNING_SEARCH_SPACE = None
19- FRAMEWORK = 'pytorch'
20- TUNING_RULESET = 'self'
16+ SUBMISSION_PATH = 'reference_algorithms/paper_baselines/adamw/jax/submission.py'
17+ TUNING_SEARCH_SPACE = 'reference_algorithms/paper_baselines/adamw/tuning_search_space.json'
2118
2219flags .DEFINE_string (
2320 'submission_path' ,
2926 'Path to tuning search space for submission module relative to algorithmic-efficiency dir.'
3027)
3128flags .DEFINE_string ('experiment_dir' ,
32- EXPERIMENT_DIR ,
29+ '$HOME/experiments/' ,
3330 'Path to experiment dir where logs will be saved.' )
3431flags .DEFINE_enum (
3532 'framework' ,
36- FRAMEWORK ,
33+ 'jax' ,
3734 enum_values = ['jax' , 'pytorch' ],
3835 help = 'Can be either pytorch or jax.' )
3936flags .DEFINE_integer ('seed' , 0 , 'RNG seed to to generate study seeds from.' )
4037flags .DEFINE_enum (
4138 'tuning_ruleset' ,
42- TUNING_RULESET ,
39+ 'external' ,
4340 enum_values = ['external' , 'self' ],
4441 help = 'Which tuning ruleset to score this submission on. Can be external or self.'
4542)
You can’t perform that action at this time.
0 commit comments