├── LICENSE ├── README.md ├── args.py ├── data └── vqa_loader.py ├── embed_loss.py ├── eval_next.py ├── global_parameters.py ├── loss.py ├── main.py ├── misc ├── VGT.png └── res.png ├── model ├── EncoderVid.py ├── cmatt.py ├── graph.py ├── language_model.py └── vqa_model.py ├── requirements.txt ├── shells ├── msrvtt_test.sh ├── msrvtt_train.sh ├── next_test.sh ├── next_train.sh ├── tgif_ftrain.sh ├── tgif_test.sh ├── tgif_train.sh └── webvid_train.sh ├── tools ├── bbox_visualizer.py ├── colors.txt └── object_align.py ├── train └── train_videoqa.py └── util.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/README.md -------------------------------------------------------------------------------- /args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/args.py -------------------------------------------------------------------------------- /data/vqa_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/data/vqa_loader.py -------------------------------------------------------------------------------- /embed_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/embed_loss.py -------------------------------------------------------------------------------- /eval_next.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/eval_next.py -------------------------------------------------------------------------------- /global_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/global_parameters.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/loss.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/main.py -------------------------------------------------------------------------------- /misc/VGT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/misc/VGT.png -------------------------------------------------------------------------------- /misc/res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/misc/res.png -------------------------------------------------------------------------------- /model/EncoderVid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/model/EncoderVid.py -------------------------------------------------------------------------------- /model/cmatt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/model/cmatt.py -------------------------------------------------------------------------------- /model/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/model/graph.py -------------------------------------------------------------------------------- /model/language_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/model/language_model.py -------------------------------------------------------------------------------- /model/vqa_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/model/vqa_model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/requirements.txt -------------------------------------------------------------------------------- /shells/msrvtt_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/shells/msrvtt_test.sh -------------------------------------------------------------------------------- /shells/msrvtt_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/shells/msrvtt_train.sh -------------------------------------------------------------------------------- /shells/next_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/shells/next_test.sh -------------------------------------------------------------------------------- /shells/next_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/shells/next_train.sh -------------------------------------------------------------------------------- /shells/tgif_ftrain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/shells/tgif_ftrain.sh -------------------------------------------------------------------------------- /shells/tgif_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/shells/tgif_test.sh -------------------------------------------------------------------------------- /shells/tgif_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/shells/tgif_train.sh -------------------------------------------------------------------------------- /shells/webvid_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/shells/webvid_train.sh -------------------------------------------------------------------------------- /tools/bbox_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/tools/bbox_visualizer.py -------------------------------------------------------------------------------- /tools/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/tools/colors.txt -------------------------------------------------------------------------------- /tools/object_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/tools/object_align.py -------------------------------------------------------------------------------- /train/train_videoqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/train/train_videoqa.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/VGT/HEAD/util.py --------------------------------------------------------------------------------