├── .gitignore ├── LICENSE ├── README.md ├── __assets__ └── framework.png ├── configs └── config.py ├── dataset ├── data_helper.py └── data_module.py ├── models └── gpt4video.py ├── requirements.txt ├── tools ├── callbacks.py ├── optim.py └── safety_checker.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpt4video/GPT4Video/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpt4video/GPT4Video/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpt4video/GPT4Video/HEAD/README.md -------------------------------------------------------------------------------- /__assets__/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpt4video/GPT4Video/HEAD/__assets__/framework.png -------------------------------------------------------------------------------- /configs/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpt4video/GPT4Video/HEAD/configs/config.py -------------------------------------------------------------------------------- /dataset/data_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpt4video/GPT4Video/HEAD/dataset/data_helper.py -------------------------------------------------------------------------------- /dataset/data_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpt4video/GPT4Video/HEAD/dataset/data_module.py -------------------------------------------------------------------------------- /models/gpt4video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpt4video/GPT4Video/HEAD/models/gpt4video.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpt4video/GPT4Video/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpt4video/GPT4Video/HEAD/tools/callbacks.py -------------------------------------------------------------------------------- /tools/optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpt4video/GPT4Video/HEAD/tools/optim.py -------------------------------------------------------------------------------- /tools/safety_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpt4video/GPT4Video/HEAD/tools/safety_checker.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpt4video/GPT4Video/HEAD/train.py --------------------------------------------------------------------------------