diff options
author | Jordan Gong <jordan.gong@protonmail.com> | 2021-02-10 13:43:15 +0800 |
---|---|---|
committer | Jordan Gong <jordan.gong@protonmail.com> | 2021-02-10 13:43:56 +0800 |
commit | 2f7c09fb4fb985db1cbf6e2bdc6622a2c51ebfc3 (patch) | |
tree | 1ca2e3b681a97c2a8065ca976b442febe4bd77b3 /config.py | |
parent | 4f81e3f44ed60459ddbd311cb7356932974c800d (diff) |
Implement new sampling technique mentioned in GaitPart[1]
[1]C. Fan et al., “GaitPart: Temporal Part-Based Model for Gait Recognition,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2020, pp. 14225–14233.
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -21,6 +21,8 @@ config: Configuration = { 'train_size': 74, # Number of sampled frames per sequence (Training only) 'num_sampled_frames': 30, + # Truncate clips longer than `truncate_threshold` + 'truncate_threshold': 40, # Discard clips shorter than `discard_threshold` 'discard_threshold': 15, # Number of input channels of model |