├── Erase.py ├── README.md ├── assests ├── cvpr23_WECL.pdf └── motivation_video3-1.png ├── core ├── __init__.py ├── dataset.py ├── loss.py ├── model.py ├── optimizer.py └── utils.py ├── datasets ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── ve8.cpython-36.pyc └── ve8.py ├── main.py ├── models ├── __init__.py ├── layers.py ├── resnet.py ├── resnet_nl.py ├── vaanet.py ├── vaanet_erase.py ├── visual_stream.py ├── visual_stream_w_Erase.py └── visual_stream_wo_Erase.py ├── opts.py ├── run.sh ├── test.py ├── tools ├── RenameEk6.py ├── SplitTrainTest.py ├── __init__.py ├── annotations │ ├── __init__.py │ ├── ek6 │ │ ├── __init__.py │ │ ├── classInd.txt │ │ ├── ek6_01.json │ │ ├── testlist01.txt │ │ └── trainlist01.txt │ └── ve8 │ │ ├── __init__.py │ │ ├── classInd.txt │ │ ├── testlist01.txt │ │ ├── trainlist01.txt │ │ └── ve8_01.json ├── n_frames.py ├── rename.py ├── ve8_json.py ├── video2jpg.py └── video2mp3.py ├── train.py ├── transforms ├── __init__.py ├── spatial.py ├── target.py └── temporal.py └── validation.py /Erase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/Erase.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/README.md -------------------------------------------------------------------------------- /assests/cvpr23_WECL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/assests/cvpr23_WECL.pdf -------------------------------------------------------------------------------- /assests/motivation_video3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/assests/motivation_video3-1.png -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/core/dataset.py -------------------------------------------------------------------------------- /core/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/core/loss.py -------------------------------------------------------------------------------- /core/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/core/model.py -------------------------------------------------------------------------------- /core/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/core/optimizer.py -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/core/utils.py -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datasets/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/datasets/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/__pycache__/ve8.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/datasets/__pycache__/ve8.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/ve8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/datasets/ve8.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/models/layers.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/resnet_nl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/models/resnet_nl.py -------------------------------------------------------------------------------- /models/vaanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/models/vaanet.py -------------------------------------------------------------------------------- /models/vaanet_erase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/models/vaanet_erase.py -------------------------------------------------------------------------------- /models/visual_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/models/visual_stream.py -------------------------------------------------------------------------------- /models/visual_stream_w_Erase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/models/visual_stream_w_Erase.py -------------------------------------------------------------------------------- /models/visual_stream_wo_Erase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/models/visual_stream_wo_Erase.py -------------------------------------------------------------------------------- /opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/opts.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | CUDA_VISIBLE_DEVICES=0,1 python main.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/test.py -------------------------------------------------------------------------------- /tools/RenameEk6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/RenameEk6.py -------------------------------------------------------------------------------- /tools/SplitTrainTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/SplitTrainTest.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/annotations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/annotations/ek6/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/annotations/ek6/classInd.txt: -------------------------------------------------------------------------------- 1 | 1 anger 2 | 2 disgust 3 | 3 fear 4 | 4 joy 5 | 5 sadness 6 | 6 surprise -------------------------------------------------------------------------------- /tools/annotations/ek6/ek6_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/annotations/ek6/ek6_01.json -------------------------------------------------------------------------------- /tools/annotations/ek6/testlist01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/annotations/ek6/testlist01.txt -------------------------------------------------------------------------------- /tools/annotations/ek6/trainlist01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/annotations/ek6/trainlist01.txt -------------------------------------------------------------------------------- /tools/annotations/ve8/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/annotations/ve8/classInd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/annotations/ve8/classInd.txt -------------------------------------------------------------------------------- /tools/annotations/ve8/testlist01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/annotations/ve8/testlist01.txt -------------------------------------------------------------------------------- /tools/annotations/ve8/trainlist01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/annotations/ve8/trainlist01.txt -------------------------------------------------------------------------------- /tools/annotations/ve8/ve8_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/annotations/ve8/ve8_01.json -------------------------------------------------------------------------------- /tools/n_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/n_frames.py -------------------------------------------------------------------------------- /tools/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/rename.py -------------------------------------------------------------------------------- /tools/ve8_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/ve8_json.py -------------------------------------------------------------------------------- /tools/video2jpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/video2jpg.py -------------------------------------------------------------------------------- /tools/video2mp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/tools/video2mp3.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/train.py -------------------------------------------------------------------------------- /transforms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transforms/spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/transforms/spatial.py -------------------------------------------------------------------------------- /transforms/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/transforms/target.py -------------------------------------------------------------------------------- /transforms/temporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/transforms/temporal.py -------------------------------------------------------------------------------- /validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nku-zhichengzhang/CTEN/HEAD/validation.py --------------------------------------------------------------------------------