├── LICENSE ├── README.md ├── configs ├── anet_tsp.yaml ├── epic_slowfast_noun.yaml ├── epic_slowfast_verb.yaml ├── hacs_i3d.yaml ├── hacs_slowfast.yaml └── thumos_i3d.yaml ├── data └── hacs │ └── annotations │ ├── HACS_segments_v1.1.1.json │ └── HACS_segments_v1.1.1_slowfast.json ├── eval.py ├── framework.jpg ├── libs ├── __init__.py ├── core │ ├── __init__.py │ └── config.py ├── datasets │ ├── __init__.py │ ├── anet.py │ ├── data_utils.py │ ├── datasets.py │ ├── epic_kitchens.py │ ├── hacs.py │ └── thumos14.py ├── modeling │ ├── __init__.py │ ├── backbones.py │ ├── blocks.py │ ├── loc_generators.py │ ├── losses.py │ ├── meta_archs.py │ ├── models.py │ ├── necks.py │ └── weight_init.py └── utils │ ├── __init__.py │ ├── count_macs.py │ ├── csrc │ └── nms_cpu.cpp │ ├── lr_schedulers.py │ ├── metrics.py │ ├── nms.py │ ├── postprocessing.py │ ├── setup.py │ └── train_utils.py ├── requirements.txt ├── tools ├── ant_tsp_script.sh ├── epic_noun_slowfast_script.sh ├── epic_verb_slowfast_script.sh ├── hacs_slowfast_script.sh └── thumos_i3d_script.sh └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/README.md -------------------------------------------------------------------------------- /configs/anet_tsp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/configs/anet_tsp.yaml -------------------------------------------------------------------------------- /configs/epic_slowfast_noun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/configs/epic_slowfast_noun.yaml -------------------------------------------------------------------------------- /configs/epic_slowfast_verb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/configs/epic_slowfast_verb.yaml -------------------------------------------------------------------------------- /configs/hacs_i3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/configs/hacs_i3d.yaml -------------------------------------------------------------------------------- /configs/hacs_slowfast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/configs/hacs_slowfast.yaml -------------------------------------------------------------------------------- /configs/thumos_i3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/configs/thumos_i3d.yaml -------------------------------------------------------------------------------- /data/hacs/annotations/HACS_segments_v1.1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/data/hacs/annotations/HACS_segments_v1.1.1.json -------------------------------------------------------------------------------- /data/hacs/annotations/HACS_segments_v1.1.1_slowfast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/data/hacs/annotations/HACS_segments_v1.1.1_slowfast.json -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/eval.py -------------------------------------------------------------------------------- /framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/framework.jpg -------------------------------------------------------------------------------- /libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/core/__init__.py -------------------------------------------------------------------------------- /libs/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/core/config.py -------------------------------------------------------------------------------- /libs/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/datasets/__init__.py -------------------------------------------------------------------------------- /libs/datasets/anet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/datasets/anet.py -------------------------------------------------------------------------------- /libs/datasets/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/datasets/data_utils.py -------------------------------------------------------------------------------- /libs/datasets/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/datasets/datasets.py -------------------------------------------------------------------------------- /libs/datasets/epic_kitchens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/datasets/epic_kitchens.py -------------------------------------------------------------------------------- /libs/datasets/hacs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/datasets/hacs.py -------------------------------------------------------------------------------- /libs/datasets/thumos14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/datasets/thumos14.py -------------------------------------------------------------------------------- /libs/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/modeling/__init__.py -------------------------------------------------------------------------------- /libs/modeling/backbones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/modeling/backbones.py -------------------------------------------------------------------------------- /libs/modeling/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/modeling/blocks.py -------------------------------------------------------------------------------- /libs/modeling/loc_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/modeling/loc_generators.py -------------------------------------------------------------------------------- /libs/modeling/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/modeling/losses.py -------------------------------------------------------------------------------- /libs/modeling/meta_archs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/modeling/meta_archs.py -------------------------------------------------------------------------------- /libs/modeling/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/modeling/models.py -------------------------------------------------------------------------------- /libs/modeling/necks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/modeling/necks.py -------------------------------------------------------------------------------- /libs/modeling/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/modeling/weight_init.py -------------------------------------------------------------------------------- /libs/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/utils/__init__.py -------------------------------------------------------------------------------- /libs/utils/count_macs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/utils/count_macs.py -------------------------------------------------------------------------------- /libs/utils/csrc/nms_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/utils/csrc/nms_cpu.cpp -------------------------------------------------------------------------------- /libs/utils/lr_schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/utils/lr_schedulers.py -------------------------------------------------------------------------------- /libs/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/utils/metrics.py -------------------------------------------------------------------------------- /libs/utils/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/utils/nms.py -------------------------------------------------------------------------------- /libs/utils/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/utils/postprocessing.py -------------------------------------------------------------------------------- /libs/utils/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/utils/setup.py -------------------------------------------------------------------------------- /libs/utils/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/libs/utils/train_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/ant_tsp_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/tools/ant_tsp_script.sh -------------------------------------------------------------------------------- /tools/epic_noun_slowfast_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/tools/epic_noun_slowfast_script.sh -------------------------------------------------------------------------------- /tools/epic_verb_slowfast_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/tools/epic_verb_slowfast_script.sh -------------------------------------------------------------------------------- /tools/hacs_slowfast_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/tools/hacs_slowfast_script.sh -------------------------------------------------------------------------------- /tools/thumos_i3d_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/tools/thumos_i3d_script.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingfengshi/TriDet/HEAD/train.py --------------------------------------------------------------------------------