diff options
author | Jordan Gong <jordan.gong@protonmail.com> | 2021-03-25 12:23:52 +0800 |
---|---|---|
committer | Jordan Gong <jordan.gong@protonmail.com> | 2021-03-25 12:23:52 +0800 |
commit | 6aad65a708f518073c07b3f896d0107a17198d14 (patch) | |
tree | 1769491b1f54a7509663a7793dea99db2cb748bf /config.py | |
parent | 1bf22d4d440b1c5843a7a968ad7dc3f434c84771 (diff) | |
parent | f065f227b0bcdac61db9240f7df6ea2b748a89b7 (diff) |
Merge branch 'python3.8' into python3.7
# Conflicts:
# utils/configuration.py
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,7 +7,9 @@ config = { # Directory used in training or testing for temporary storage 'save_dir': 'runs', # Recorde disentangled image or not - 'image_log_on': False + 'image_log_on': False, + # The number of subjects for validating (Part of testing set) + 'val_size': 10, }, # Dataset settings 'dataset': { @@ -17,8 +19,6 @@ config = { 'root_dir': 'data/CASIA-B-MRCNN-V2/SEG', # The number of subjects for training 'train_size': 74, - # The number of subjects for validating (Part of testing set) - 'val_size': 10, # Number of sampled frames per sequence (Training only) 'num_sampled_frames': 30, # Truncate clips longer than `truncate_threshold` |