diff options
author | Jordan Gong <jordan.gong@protonmail.com> | 2021-04-06 21:20:24 +0800 |
---|---|---|
committer | Jordan Gong <jordan.gong@protonmail.com> | 2021-04-06 21:20:24 +0800 |
commit | a7d83c5447d0b81dc5e2a824c7ba638833fead86 (patch) | |
tree | ed599b4aabe8188695eccc2a8f03c7ed28040997 /config.py | |
parent | 8630dbfe3b2f720ee7908899d649ba37333a2ac9 (diff) | |
parent | 7f6c65fa954a43c9d248219525cad35fe1b8a046 (diff) |
Merge branch 'master' into python3.8
# Conflicts:
# models/auto_encoder.py
# models/rgb_part_net.py
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11,7 +11,7 @@ config: Configuration = { # Recorde disentangled image or not 'image_log_on': False, # The number of subjects for validating (Part of testing set) - 'val_size': 10, + 'val_size': 20, }, # Dataset settings 'dataset': { @@ -51,7 +51,7 @@ config: Configuration = { # Auto-encoder feature channels coefficient 'ae_feature_channels': 64, # Appearance, canonical and pose feature dimensions - 'f_a_c_p_dims': (192, 192, 96), + 'f_a_c_p_dims': (192, 192, 128), # HPM pyramid scales, of which sum is number of parts 'hpm_scales': (1, 2, 4, 8), # Global pooling method |