├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── data └── thumos_14_annotations │ ├── Test_Annotation.csv │ ├── Val_Annotation.csv │ └── thumos14_test_groundtruth.csv ├── dataset.py ├── inference.py ├── loss_function.py ├── model.py ├── prior_box.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/config.py -------------------------------------------------------------------------------- /data/thumos_14_annotations/Test_Annotation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/data/thumos_14_annotations/Test_Annotation.csv -------------------------------------------------------------------------------- /data/thumos_14_annotations/Val_Annotation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/data/thumos_14_annotations/Val_Annotation.csv -------------------------------------------------------------------------------- /data/thumos_14_annotations/thumos14_test_groundtruth.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/data/thumos_14_annotations/thumos14_test_groundtruth.csv -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/dataset.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/inference.py -------------------------------------------------------------------------------- /loss_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/loss_function.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/model.py -------------------------------------------------------------------------------- /prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/prior_box.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rheelt/SSAD_pytorch/HEAD/utils.py --------------------------------------------------------------------------------