├── README.md ├── Thumos14reduced-Annotations ├── Ambiguous_test.txt ├── classlist.npy ├── duration.npy ├── extracted_fps.npy ├── labels.npy ├── labels_all.npy ├── original_fps.npy ├── segments.npy ├── subset.npy └── videoname.npy ├── eval ├── classificationMAP.py ├── detectionMAP.py ├── eval_anno_file_generation.py ├── eval_detection.py └── utils_eval.py ├── main.py ├── model.py ├── options.py ├── proposal_methods.py ├── requirements.txt ├── test.py ├── train.py ├── utils └── wsad_utils.py └── wsad_dataset.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/README.md -------------------------------------------------------------------------------- /Thumos14reduced-Annotations/Ambiguous_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/Thumos14reduced-Annotations/Ambiguous_test.txt -------------------------------------------------------------------------------- /Thumos14reduced-Annotations/classlist.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/Thumos14reduced-Annotations/classlist.npy -------------------------------------------------------------------------------- /Thumos14reduced-Annotations/duration.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/Thumos14reduced-Annotations/duration.npy -------------------------------------------------------------------------------- /Thumos14reduced-Annotations/extracted_fps.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/Thumos14reduced-Annotations/extracted_fps.npy -------------------------------------------------------------------------------- /Thumos14reduced-Annotations/labels.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/Thumos14reduced-Annotations/labels.npy -------------------------------------------------------------------------------- /Thumos14reduced-Annotations/labels_all.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/Thumos14reduced-Annotations/labels_all.npy -------------------------------------------------------------------------------- /Thumos14reduced-Annotations/original_fps.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/Thumos14reduced-Annotations/original_fps.npy -------------------------------------------------------------------------------- /Thumos14reduced-Annotations/segments.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/Thumos14reduced-Annotations/segments.npy -------------------------------------------------------------------------------- /Thumos14reduced-Annotations/subset.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/Thumos14reduced-Annotations/subset.npy -------------------------------------------------------------------------------- /Thumos14reduced-Annotations/videoname.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/Thumos14reduced-Annotations/videoname.npy -------------------------------------------------------------------------------- /eval/classificationMAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/eval/classificationMAP.py -------------------------------------------------------------------------------- /eval/detectionMAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/eval/detectionMAP.py -------------------------------------------------------------------------------- /eval/eval_anno_file_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/eval/eval_anno_file_generation.py -------------------------------------------------------------------------------- /eval/eval_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/eval/eval_detection.py -------------------------------------------------------------------------------- /eval/utils_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/eval/utils_eval.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/model.py -------------------------------------------------------------------------------- /options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/options.py -------------------------------------------------------------------------------- /proposal_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/proposal_methods.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/train.py -------------------------------------------------------------------------------- /utils/wsad_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/utils/wsad_utils.py -------------------------------------------------------------------------------- /wsad_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianxiong-zhou/TFE-DCN/HEAD/wsad_dataset.py --------------------------------------------------------------------------------