TaatiTeam / MotionAGFormer

Official implementation of the paper "MotionAGFormer: Enhancing 3D Pose Estimation with a Transformer-GCNFormer Network" (WACV 2024).
Apache License 2.0
128 stars 15 forks source link

The validation section in the training code #20

Closed sk-zhang closed 6 months ago

sk-zhang commented 6 months ago

Exciting work indeed! Regarding the code in the 'train.py' file, I have some questions about the purpose of the 'block_list' in lines 156-158. What is its function? block_list = ['s_09_act_05_subact_02', 's_09_act_10_subact_02', 's_09_act_13_subact_01']

SoroushMehraban commented 6 months ago

Thanks @sk-zhang 🙂 The evaluation code is same as what MotionBERT uses (probably they can give you a better answer). I assume that's because for certain videos of subject 9 the annotation has some issues and they discarded it.

sk-zhang commented 6 months ago

Thanks!