diff options
author | Jordan Gong <jordan.gong@protonmail.com> | 2021-03-25 12:23:35 +0800 |
---|---|---|
committer | Jordan Gong <jordan.gong@protonmail.com> | 2021-03-25 12:23:35 +0800 |
commit | f065f227b0bcdac61db9240f7df6ea2b748a89b7 (patch) | |
tree | 9ad619fcf1205b3ab438840f4ded1d1455e39ff3 /config.py | |
parent | 89d702fb2adb588864be489e3d53ffa2746a52af (diff) | |
parent | 5a063855dbecb8f1a86ad25d9e61a9c8b63312b3 (diff) |
Merge branch 'master' into python3.8
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -9,7 +9,9 @@ config: Configuration = { # 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': { @@ -19,8 +21,6 @@ config: Configuration = { '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` |