Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 989 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 989 Bytes

Learning to Score Figure Skating Videos

This is the code for TCSVT paper 'Learning to Score Figure Skating Videos'. To run this code, you need to do as follows,

Prepare the environment

This code needs pytorch 0.4.0.

Download Fis-V Dataset

We provide the c3d feature of Fis-V videos here Fis-V, you can download it and unzip the file into any directory. The corresponding anotations are in ./data.

The raw videos have been uploaded. You can download them from here Fis-V.

Train and test PCS Score

python train.py --root /path/to/data -n {name of model} --pcs

Train and test TES Score

python train.py --root /path/to/data -n {name of model}

The codes in rnn_cells are simply modified version based on skip-rnn.