Code repository for our solution to the H2O-Action Challenge.
Our code is mainly based on SlowFast, please refer to this repository for more information.
You need to download the following data to start the experiment:
You can train on the H2O dataset by running:
REPO_PATH='/xxx/SlowFast'
export PYTHONPATH=$PYTHONPATH:$REPO_PATH
python tools/run_net.py --cfg configs/H2O/SLOWFAST_4x16_R50.yaml
You can test on the H2O dataset by running:
REPO_PATH='/xxx/SlowFast'
export PYTHONPATH=$PYTHONPATH:$REPO_PATH
python tools/run_net.py --cfg configs/H2O/SLOWFAST_4x16_R50_TEST.yaml
The majority of this repository is borrowed from SlowFast. Thank these authors for their great work.