From 2f7c09fb4fb985db1cbf6e2bdc6622a2c51ebfc3 Mon Sep 17 00:00:00 2001 From: Jordan Gong Date: Wed, 10 Feb 2021 13:43:15 +0800 Subject: Implement new sampling technique mentioned in GaitPart[1] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [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. --- config.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config.py') diff --git a/config.py b/config.py index 04a22b9..547d1a3 100644 --- a/config.py +++ b/config.py @@ -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 -- cgit v1.2.3