This is the PyTorch code for the following paper presented in IbPRIA 2022:
Improving Action Quality Assessment Using Weighted Aggregation
The code can be used to reproduce the resutls on MTL-AQA dataset.
Pre-trained models: The resnet's used in our code requires pre-trianed models. These mdels can be found in the following repositoreis:
- PyTorch
- Python 3
Download the dataset from here. Extract the necessary frames from the videos. The code expects the frames to be in a folder structure such as this:
~/frames
/video0_freames
/frame0.jpg
.
.
.
/frame1000.jpg
/video1_frames
/frame0.jpg
.
.
.
.
.
Execute the following command:
python train_test_resnet.py --initial_epoch 0
Change the value of initial_epoch to resume the execution from some other epoch.