Action classifier for powerlifting. Classify clip as squat, deadlift, or bench press.
The action classifier head uses DSTFormer as a backbone for getting motion represenation. The pretrain backbone can be trained from scratch. See Training Instruction. Or download pretrain backbone parameters here.
-
Process Fit3D dataset. See Data Preprocessing
-
Slice data into clips (len=243, stride=81)
python process_fit3d_action.py
- Verify data files in
data/action/Fit3D
Train the classifier using provided training script
python train_action.py \
--data_path /path/to/dataset \
--checkpoint /checkpoint/dir \
--pretrained /pretrain/model/dir \
--selection latest_epoch.bin \
--epochs 100 \
--batch_size 32