diff options
Diffstat (limited to 'utils')
-rw-r--r-- | utils/configuration.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/configuration.py b/utils/configuration.py index 8dcae07..f18dab0 100644 --- a/utils/configuration.py +++ b/utils/configuration.py @@ -8,6 +8,7 @@ class SystemConfiguration(TypedDict): CUDA_VISIBLE_DEVICES: str save_dir: str image_log_on: bool + image_log_steps: int val_size: int @@ -65,11 +66,13 @@ class OptimizerHPConfiguration(TypedDict): class SubSchedulerHPConfiguration(TypedDict): start_step: int + stop_step: int final_gamma: float class SchedulerHPConfiguration(TypedDict): start_step: int + stop_step: int final_gamma: float auto_encoder: SubSchedulerHPConfiguration hpm: SubSchedulerHPConfiguration |