Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.38 KB

File metadata and controls

33 lines (26 loc) · 1.38 KB

Spatiotemporal-Residual-Propagation

Code release for ICCV 2019 paper "Spatiotemporal Feature Residual Propagation for Action Prediction;"

Environment Requirements:

  1. Python 2.7
  2. Pytorch 0.4.0
  3. CUDA-8
  4. ffmpeg
  5. PIL

Dataset Preparation

Download

For dataset loading and augmenting, we modify code from tsn (https://github.com/yjxiong/tsn-pytorch/blob/master/dataset.py) for every dataset and the modified version are locating in each sub-folder.

Pretraining Process:

Since proposed method focus on feature propagation, we obtain classifiers offline by pretraining each dataset with TSN model.

  • UCF-101: Directly from tsn pretrain;
  • JHMDB-21: Pretrain on RGB;
  • BIT: Pretrain on Flow;

See pretrain folder in each subfolder for more details; Pretrain Model Link:

Training and Comparison

Please see details in each subfolder for training and testing procedures