MS_LSTM
MS_LSTM copied to clipboard
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.