├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── VideoGPT2.py ├── dataset.py ├── generate.py ├── images ├── Figure1.png └── Figure2.png ├── requirements.txt └── train.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictnlp/DSTC8-AVSD/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictnlp/DSTC8-AVSD/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictnlp/DSTC8-AVSD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictnlp/DSTC8-AVSD/HEAD/README.md -------------------------------------------------------------------------------- /VideoGPT2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictnlp/DSTC8-AVSD/HEAD/VideoGPT2.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictnlp/DSTC8-AVSD/HEAD/dataset.py -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictnlp/DSTC8-AVSD/HEAD/generate.py -------------------------------------------------------------------------------- /images/Figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictnlp/DSTC8-AVSD/HEAD/images/Figure1.png -------------------------------------------------------------------------------- /images/Figure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictnlp/DSTC8-AVSD/HEAD/images/Figure2.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictnlp/DSTC8-AVSD/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictnlp/DSTC8-AVSD/HEAD/train.py --------------------------------------------------------------------------------