├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── README.md ├── config.py ├── data └── make_train_test.py ├── dataloader.py ├── eval.py ├── model.py ├── scripts ├── eval.sh └── train.sh ├── tools.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yidadaa/Pytorch-Video-Classification/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yidadaa/Pytorch-Video-Classification/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yidadaa/Pytorch-Video-Classification/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yidadaa/Pytorch-Video-Classification/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yidadaa/Pytorch-Video-Classification/HEAD/config.py -------------------------------------------------------------------------------- /data/make_train_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yidadaa/Pytorch-Video-Classification/HEAD/data/make_train_test.py -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yidadaa/Pytorch-Video-Classification/HEAD/dataloader.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yidadaa/Pytorch-Video-Classification/HEAD/eval.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yidadaa/Pytorch-Video-Classification/HEAD/model.py -------------------------------------------------------------------------------- /scripts/eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yidadaa/Pytorch-Video-Classification/HEAD/scripts/eval.sh -------------------------------------------------------------------------------- /scripts/train.sh: -------------------------------------------------------------------------------- 1 | 2 | 3 | CUDA_VISIBLE_DEVICES=0 python train.py 4 | -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yidadaa/Pytorch-Video-Classification/HEAD/tools.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yidadaa/Pytorch-Video-Classification/HEAD/train.py --------------------------------------------------------------------------------