├── LICENSE ├── README.md ├── datasets ├── __init__.py ├── thumos14.py ├── thumos14_anno_action.json ├── thumos14_anno_action_class_idx.json ├── thumos14_eval.py ├── thumos14_test_groundtruth.csv └── thumos_frames_info.json ├── engine.py ├── environment.yaml ├── main.py ├── models ├── __init__.py ├── matcher.py ├── position_embedding.py ├── rtd.py └── transformer.py ├── requirements.txt ├── rtd_overview.png ├── rtd_thumos14.png ├── rtd_thumos14_with_timestamp.png ├── test.sh ├── train.sh └── util ├── box_ops.py └── misc.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/README.md -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/datasets/__init__.py -------------------------------------------------------------------------------- /datasets/thumos14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/datasets/thumos14.py -------------------------------------------------------------------------------- /datasets/thumos14_anno_action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/datasets/thumos14_anno_action.json -------------------------------------------------------------------------------- /datasets/thumos14_anno_action_class_idx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/datasets/thumos14_anno_action_class_idx.json -------------------------------------------------------------------------------- /datasets/thumos14_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/datasets/thumos14_eval.py -------------------------------------------------------------------------------- /datasets/thumos14_test_groundtruth.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/datasets/thumos14_test_groundtruth.csv -------------------------------------------------------------------------------- /datasets/thumos_frames_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/datasets/thumos_frames_info.json -------------------------------------------------------------------------------- /engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/engine.py -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/environment.yaml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/models/matcher.py -------------------------------------------------------------------------------- /models/position_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/models/position_embedding.py -------------------------------------------------------------------------------- /models/rtd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/models/rtd.py -------------------------------------------------------------------------------- /models/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/models/transformer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/requirements.txt -------------------------------------------------------------------------------- /rtd_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/rtd_overview.png -------------------------------------------------------------------------------- /rtd_thumos14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/rtd_thumos14.png -------------------------------------------------------------------------------- /rtd_thumos14_with_timestamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/rtd_thumos14_with_timestamp.png -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/test.sh -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/train.sh -------------------------------------------------------------------------------- /util/box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/util/box_ops.py -------------------------------------------------------------------------------- /util/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/RTD-Action/HEAD/util/misc.py --------------------------------------------------------------------------------