├── README.md ├── datasets ├── .ipynb_checkpoints │ ├── hmdb51-checkpoint.py │ └── ucf101-checkpoint.py ├── __pycache__ │ ├── hmdb51.cpython-37.pyc │ └── ucf101.cpython-37.pyc ├── hmdb51.py └── ucf101.py ├── models ├── .ipynb_checkpoints │ ├── c3d-checkpoint.py │ ├── video_transformer-checkpoint.py │ ├── video_transformer_vis-checkpoint.py │ ├── vmoco_with_transformer-checkpoint.py │ └── wrapper_model-checkpoint.py ├── __pycache__ │ ├── c3d.cpython-37.pyc │ ├── r21d.cpython-37.pyc │ ├── r3d.cpython-37.pyc │ ├── video_transformer.cpython-37.pyc │ ├── video_transformer_vis.cpython-37.pyc │ ├── vmoco_with_transformer.cpython-37.pyc │ └── wrapper_model.cpython-37.pyc ├── c3d.py ├── r21d.py ├── r3d.py ├── video_transformer.py ├── vmoco_with_transformer.py └── wrapper_model.py ├── retrieve_videos.py ├── train_finetune.py ├── train_pretrain.py └── train_pretrain_sdp.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/README.md -------------------------------------------------------------------------------- /datasets/.ipynb_checkpoints/hmdb51-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/datasets/.ipynb_checkpoints/hmdb51-checkpoint.py -------------------------------------------------------------------------------- /datasets/.ipynb_checkpoints/ucf101-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/datasets/.ipynb_checkpoints/ucf101-checkpoint.py -------------------------------------------------------------------------------- /datasets/__pycache__/hmdb51.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/datasets/__pycache__/hmdb51.cpython-37.pyc -------------------------------------------------------------------------------- /datasets/__pycache__/ucf101.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/datasets/__pycache__/ucf101.cpython-37.pyc -------------------------------------------------------------------------------- /datasets/hmdb51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/datasets/hmdb51.py -------------------------------------------------------------------------------- /datasets/ucf101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/datasets/ucf101.py -------------------------------------------------------------------------------- /models/.ipynb_checkpoints/c3d-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/.ipynb_checkpoints/c3d-checkpoint.py -------------------------------------------------------------------------------- /models/.ipynb_checkpoints/video_transformer-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/.ipynb_checkpoints/video_transformer-checkpoint.py -------------------------------------------------------------------------------- /models/.ipynb_checkpoints/video_transformer_vis-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/.ipynb_checkpoints/video_transformer_vis-checkpoint.py -------------------------------------------------------------------------------- /models/.ipynb_checkpoints/vmoco_with_transformer-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/.ipynb_checkpoints/vmoco_with_transformer-checkpoint.py -------------------------------------------------------------------------------- /models/.ipynb_checkpoints/wrapper_model-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/.ipynb_checkpoints/wrapper_model-checkpoint.py -------------------------------------------------------------------------------- /models/__pycache__/c3d.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/__pycache__/c3d.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/r21d.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/__pycache__/r21d.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/r3d.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/__pycache__/r3d.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/video_transformer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/__pycache__/video_transformer.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/video_transformer_vis.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/__pycache__/video_transformer_vis.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/vmoco_with_transformer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/__pycache__/vmoco_with_transformer.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/wrapper_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/__pycache__/wrapper_model.cpython-37.pyc -------------------------------------------------------------------------------- /models/c3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/c3d.py -------------------------------------------------------------------------------- /models/r21d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/r21d.py -------------------------------------------------------------------------------- /models/r3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/r3d.py -------------------------------------------------------------------------------- /models/video_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/video_transformer.py -------------------------------------------------------------------------------- /models/vmoco_with_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/vmoco_with_transformer.py -------------------------------------------------------------------------------- /models/wrapper_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/models/wrapper_model.py -------------------------------------------------------------------------------- /retrieve_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/retrieve_videos.py -------------------------------------------------------------------------------- /train_finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/train_finetune.py -------------------------------------------------------------------------------- /train_pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/train_pretrain.py -------------------------------------------------------------------------------- /train_pretrain_sdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoshengcv/CACL/HEAD/train_pretrain_sdp.py --------------------------------------------------------------------------------