This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
166 additions
and
69 deletions.
There are no files selected for viewing
22 changes: 0 additions & 22 deletions
22
configs/config/benchmark/suite/benchmark_suite_scheduler_example.json
This file was deleted.
Oops, something went wrong.
32 changes: 32 additions & 0 deletions
32
dev/benchmark_suite/benchmark_suite_scheduler_template.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"params": { | ||
"training_checkpoint_dir": "(str) Training checkpoint directory. That is the CHECKPOINT.DIR of the training config", | ||
"benchmarks": [ | ||
{ | ||
"evaluation_name": "(str) Name of benchmark for convenience", | ||
"config_files": [ | ||
"config=path/to/evaluation/config", | ||
"config.OVERRIDES=new_value" | ||
] | ||
} | ||
], | ||
"evaluation_iter_freq": "(int, default=-1) Evaluate the checkpoint every N iterations", | ||
"evaluation_phase_freq": "(int, default=-1) Evaluate the checkpoint every N phases", | ||
"evaluate_final_phase": "(bool, default=True) Evaluate the final phase", | ||
"autoload_slurm_evaluator_checkpoint": "(bool, default=False) Whether or not to automatically load the benchmark checkpoint", | ||
"slurm_evaluator_checkpoint": "(str, default=None) Path to load the benchmark checkpoint", | ||
"auto_retry_evaluations": "(bool, default=False) Whether or not to automatically retry the evaluations", | ||
"retry_evaluation_job_ids": "(array[int], default=[]) Array of job_ids to retry", | ||
"max_retries": "(int, default=3) Maximum number of retries", | ||
}, | ||
"slurm_options": { | ||
"PARTITION": "(str) Partition", | ||
"NAME": "(str, default=vissl) Name of slurm job", | ||
"COMMENT": "(str, default=vissl evaluation job) Comment of slurm job", | ||
"CONSTRAINT": "(str, default='') Constraing of slurm job", | ||
"TIMEOUT_MIN": "(int, default=72 * 60) Minimum amount of minutes to timeout", | ||
"CPUS_PER_TASK": "(int, default=8) Numer of cpus per task.", | ||
"MEM_GB": "(int, default=32) Amount of RAM to request from slurm", | ||
"ADDITIONAL_PARAMETERS": "(Dict[[str, Any]], default={}) Any default slurm options to pass to submitit", | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.