├── .gitignore ├── LICENSE ├── README.md ├── data ├── class_file.csv ├── yc2 │ └── roi_box │ │ ├── testing-box-100.txt │ │ ├── training-box-100.txt │ │ └── validation-box-100.txt ├── yc2_dataset.py └── yc2_test_dataset.py ├── model ├── dvsa.py └── transformer.py ├── test.py ├── tools ├── codalab_eval_grd_yc2bb.py ├── conda_env_yc2_bb.yml ├── recall_util.py └── test_util.py ├── train.py └── vis.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/README.md -------------------------------------------------------------------------------- /data/class_file.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/data/class_file.csv -------------------------------------------------------------------------------- /data/yc2/roi_box/testing-box-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/data/yc2/roi_box/testing-box-100.txt -------------------------------------------------------------------------------- /data/yc2/roi_box/training-box-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/data/yc2/roi_box/training-box-100.txt -------------------------------------------------------------------------------- /data/yc2/roi_box/validation-box-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/data/yc2/roi_box/validation-box-100.txt -------------------------------------------------------------------------------- /data/yc2_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/data/yc2_dataset.py -------------------------------------------------------------------------------- /data/yc2_test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/data/yc2_test_dataset.py -------------------------------------------------------------------------------- /model/dvsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/model/dvsa.py -------------------------------------------------------------------------------- /model/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/model/transformer.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/test.py -------------------------------------------------------------------------------- /tools/codalab_eval_grd_yc2bb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/tools/codalab_eval_grd_yc2bb.py -------------------------------------------------------------------------------- /tools/conda_env_yc2_bb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/tools/conda_env_yc2_bb.yml -------------------------------------------------------------------------------- /tools/recall_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/tools/recall_util.py -------------------------------------------------------------------------------- /tools/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/tools/test_util.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/train.py -------------------------------------------------------------------------------- /vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganCOG/Video-Grounding-from-Text/HEAD/vis.py --------------------------------------------------------------------------------