Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 2.52 KB

11_cli_args.md

File metadata and controls

15 lines (13 loc) · 2.52 KB

11. CLI args

The following args are currently supported by CW2:

Flag Name Effect
-s --slurm Run using SLURM Workload Manager.
-o --overwrite Overwrite existing results.
-e name1 [...] --experiments Allows to specify which experiments should be run. Corresponds to the name field of the configuration YAML.
--zip Creates a ZIP archive for documentation purposes of $CWD or, if set, "experiment_copy_src".
--skipsizecheck Disables a safety size check when Zipping or Code-Copying. The safety prevents unecessarily copying / archiving big files such as training data.
--multicopy Creates a Code-Copy for each Job. If you are modifying a hardcoded file in your codestructure during runtime, this feature might help ensure multiple runs do not interfere with each other.
--nocodecopy Do not use the Code-Copy feature, even if the config arguments are specified.
--noconsolelog Disables writing logs with the internal PythonLogger module. Slurm will still create its slurm_logs, so no information is lost. Helps if too many repetitions try to open too many open files and causing errors.

Back to Overview