├── LICENSE ├── README.md ├── config.py ├── dataset └── THUMOS14 │ ├── gt.json │ ├── split_test.txt │ └── split_train.txt ├── eval ├── __pycache__ │ ├── eval_classification.cpython-35.pyc │ ├── eval_detection.cpython-35.pyc │ └── utils_eval.cpython-35.pyc ├── eval_classification.py ├── eval_detection.py └── utils_eval.py ├── main.py ├── main_eval.py ├── model.py ├── options.py ├── requirements.txt ├── run.sh ├── run_eval.sh ├── test.py ├── thumos_features.py ├── train.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/config.py -------------------------------------------------------------------------------- /dataset/THUMOS14/gt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/dataset/THUMOS14/gt.json -------------------------------------------------------------------------------- /dataset/THUMOS14/split_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/dataset/THUMOS14/split_test.txt -------------------------------------------------------------------------------- /dataset/THUMOS14/split_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/dataset/THUMOS14/split_train.txt -------------------------------------------------------------------------------- /eval/__pycache__/eval_classification.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/eval/__pycache__/eval_classification.cpython-35.pyc -------------------------------------------------------------------------------- /eval/__pycache__/eval_detection.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/eval/__pycache__/eval_detection.cpython-35.pyc -------------------------------------------------------------------------------- /eval/__pycache__/utils_eval.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/eval/__pycache__/utils_eval.cpython-35.pyc -------------------------------------------------------------------------------- /eval/eval_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/eval/eval_classification.py -------------------------------------------------------------------------------- /eval/eval_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/eval/eval_detection.py -------------------------------------------------------------------------------- /eval/utils_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/eval/utils_eval.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/main.py -------------------------------------------------------------------------------- /main_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/main_eval.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/model.py -------------------------------------------------------------------------------- /options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/options.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/run.sh -------------------------------------------------------------------------------- /run_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/run_eval.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/test.py -------------------------------------------------------------------------------- /thumos_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/thumos_features.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/WTAL-Uncertainty-Modeling/HEAD/utils.py --------------------------------------------------------------------------------