diff options
author | Jordan Gong <jordan.gong@protonmail.com> | 2021-01-13 11:02:54 +0800 |
---|---|---|
committer | Jordan Gong <jordan.gong@protonmail.com> | 2021-01-13 11:02:54 +0800 |
commit | 356ad035d85936c7896abd049319d18ad7f3df94 (patch) | |
tree | ea338e4e7560dcecfb466fa495978d9ccea5d31f /config.py | |
parent | 37e307b960d565e7a58dfd22d0506c0f6f4fd122 (diff) | |
parent | 8ee391b65e2b48d777a268749f54b3aa9e4b9142 (diff) |
Merge branch 'master' into python3.8
# Conflicts:
# models/model.py
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -13,7 +13,7 @@ config: Configuration = { 'dataset': { # Name of dataset (CASIA-B or FVG) 'name': 'CASIA-B', - # Path to dataset root + # Path to dataset root (required) 'root_dir': 'data/CASIA-B-MRCNN/SEG', # The number of subjects for training 'train_size': 74, @@ -88,9 +88,13 @@ config: Configuration = { 'model': { # Model name, used for naming checkpoint 'name': 'RGB-GaitPart', - # Restoration iteration from checkpoint - 'restore_iter': 0, - # Total iteration for training - 'total_iter': 80000, + # Restoration iteration from checkpoint (single model) + # 'restore_iter': 0, + # Total iteration for training (single model) + # 'total_iter': 80000, + # Restoration iteration (multiple models, e.g. nm, bg and cl) + 'restore_iters': (0, 0, 0), + # Total iteration for training (multiple models) + 'total_iter': (80_000, 80_000, 80_000), }, } |