├── LICENSE ├── README.md ├── config.py ├── dataset └── THUMOS14 │ ├── fps_dict.json │ ├── gt.json │ ├── point_gaussian │ └── point_labels.csv │ ├── split_test.txt │ └── split_train.txt ├── decode.py ├── eval ├── eval_classification.py ├── eval_detection.py └── utils_eval.py ├── grammar.py ├── main.py ├── main_eval.py ├── model.py ├── options.py ├── requirements.txt ├── run.sh ├── run_eval.sh ├── search.py ├── test.py ├── thumos_features.py ├── train.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/config.py -------------------------------------------------------------------------------- /dataset/THUMOS14/fps_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/dataset/THUMOS14/fps_dict.json -------------------------------------------------------------------------------- /dataset/THUMOS14/gt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/dataset/THUMOS14/gt.json -------------------------------------------------------------------------------- /dataset/THUMOS14/point_gaussian/point_labels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/dataset/THUMOS14/point_gaussian/point_labels.csv -------------------------------------------------------------------------------- /dataset/THUMOS14/split_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/dataset/THUMOS14/split_test.txt -------------------------------------------------------------------------------- /dataset/THUMOS14/split_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/dataset/THUMOS14/split_train.txt -------------------------------------------------------------------------------- /decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/decode.py -------------------------------------------------------------------------------- /eval/eval_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/eval/eval_classification.py -------------------------------------------------------------------------------- /eval/eval_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/eval/eval_detection.py -------------------------------------------------------------------------------- /eval/utils_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/eval/utils_eval.py -------------------------------------------------------------------------------- /grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/grammar.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/main.py -------------------------------------------------------------------------------- /main_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/main_eval.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/model.py -------------------------------------------------------------------------------- /options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/options.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/run.sh -------------------------------------------------------------------------------- /run_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/run_eval.sh -------------------------------------------------------------------------------- /search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/search.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/test.py -------------------------------------------------------------------------------- /thumos_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/thumos_features.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pilhyeon/Learning-Action-Completeness-from-Points/HEAD/utils.py --------------------------------------------------------------------------------