├── README.md ├── data_list ├── hmdb_empty.txt ├── hmdb_full.txt ├── hmdb_train.txt ├── hmdb_val.txt ├── ucf_train.txt └── ucf_val.txt ├── main_val.py ├── module ├── .DS_Store ├── Attmodules.py ├── Pyramidmodule.py ├── __init__.py └── models_adv.py ├── opts ├── .DS_Store ├── __init__.py ├── hyper.py └── opts.py ├── train.sh └── utils ├── .DS_Store ├── __init__.py ├── basic_ops.py ├── dataset_ucf101.py ├── transforms.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/README.md -------------------------------------------------------------------------------- /data_list/hmdb_empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_list/hmdb_full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/data_list/hmdb_full.txt -------------------------------------------------------------------------------- /data_list/hmdb_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/data_list/hmdb_train.txt -------------------------------------------------------------------------------- /data_list/hmdb_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/data_list/hmdb_val.txt -------------------------------------------------------------------------------- /data_list/ucf_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/data_list/ucf_train.txt -------------------------------------------------------------------------------- /data_list/ucf_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/data_list/ucf_val.txt -------------------------------------------------------------------------------- /main_val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/main_val.py -------------------------------------------------------------------------------- /module/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/module/.DS_Store -------------------------------------------------------------------------------- /module/Attmodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/module/Attmodules.py -------------------------------------------------------------------------------- /module/Pyramidmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/module/Pyramidmodule.py -------------------------------------------------------------------------------- /module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/models_adv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/module/models_adv.py -------------------------------------------------------------------------------- /opts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/opts/.DS_Store -------------------------------------------------------------------------------- /opts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opts/hyper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/opts/hyper.py -------------------------------------------------------------------------------- /opts/opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/opts/opts.py -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/train.sh -------------------------------------------------------------------------------- /utils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/utils/.DS_Store -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/basic_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/utils/basic_ops.py -------------------------------------------------------------------------------- /utils/dataset_ucf101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/utils/dataset_ucf101.py -------------------------------------------------------------------------------- /utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/utils/transforms.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuml/VideoDG/HEAD/utils/utils.py --------------------------------------------------------------------------------