diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-04-24 23:09:20 +0200 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-04-24 23:09:20 +0200 |
| commit | 4e60c836fb710baceba570c28c06437db3ad5c9b (patch) | |
| tree | 21caf6d1792bd83a47fb3d372ee7120211e83f18 /training/run_experiment.py | |
| parent | 1ca8b0b9e0613c1e02f6a5d8b49e20c4d6916412 (diff) | |
Implementing CoaT transformer, continue tomorrow...
Diffstat (limited to 'training/run_experiment.py')
| -rw-r--r-- | training/run_experiment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/training/run_experiment.py b/training/run_experiment.py index e1aae4e..bdefbf0 100644 --- a/training/run_experiment.py +++ b/training/run_experiment.py @@ -22,7 +22,7 @@ def _create_experiment_dir(config: DictConfig) -> Path: """Creates log directory for experiment.""" log_dir = ( LOGS_DIRNAME - / f"{config.model.type}_{config.network.type}" + / f"{config.model.type}_{config.network.type}".lower() / datetime.now().strftime("%m%d_%H%M%S") ) log_dir.mkdir(parents=True, exist_ok=True) |