├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── assets └── example │ ├── example_01.png │ ├── example_02.png │ ├── example_03.png │ └── example_04.png ├── cog.yaml ├── configs ├── inference │ ├── inference.yaml │ └── inference_autoregress.yaml ├── prompts │ └── default.yaml └── training │ └── training.yaml ├── consisti2v ├── data │ └── dataset.py ├── models │ ├── rotary_embedding.py │ ├── videoldm_attention.py │ ├── videoldm_transformer_blocks.py │ ├── videoldm_unet.py │ └── videoldm_unet_blocks.py ├── pipelines │ ├── pipeline_autoregress_animation.py │ └── pipeline_conditional_animation.py └── utils │ ├── frameinit_utils.py │ └── util.py ├── environment.yaml ├── predict.py ├── scripts ├── animate.py └── animate_autoregress.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/app.py -------------------------------------------------------------------------------- /assets/example/example_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/assets/example/example_01.png -------------------------------------------------------------------------------- /assets/example/example_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/assets/example/example_02.png -------------------------------------------------------------------------------- /assets/example/example_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/assets/example/example_03.png -------------------------------------------------------------------------------- /assets/example/example_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/assets/example/example_04.png -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/cog.yaml -------------------------------------------------------------------------------- /configs/inference/inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/configs/inference/inference.yaml -------------------------------------------------------------------------------- /configs/inference/inference_autoregress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/configs/inference/inference_autoregress.yaml -------------------------------------------------------------------------------- /configs/prompts/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/configs/prompts/default.yaml -------------------------------------------------------------------------------- /configs/training/training.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/configs/training/training.yaml -------------------------------------------------------------------------------- /consisti2v/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/consisti2v/data/dataset.py -------------------------------------------------------------------------------- /consisti2v/models/rotary_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/consisti2v/models/rotary_embedding.py -------------------------------------------------------------------------------- /consisti2v/models/videoldm_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/consisti2v/models/videoldm_attention.py -------------------------------------------------------------------------------- /consisti2v/models/videoldm_transformer_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/consisti2v/models/videoldm_transformer_blocks.py -------------------------------------------------------------------------------- /consisti2v/models/videoldm_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/consisti2v/models/videoldm_unet.py -------------------------------------------------------------------------------- /consisti2v/models/videoldm_unet_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/consisti2v/models/videoldm_unet_blocks.py -------------------------------------------------------------------------------- /consisti2v/pipelines/pipeline_autoregress_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/consisti2v/pipelines/pipeline_autoregress_animation.py -------------------------------------------------------------------------------- /consisti2v/pipelines/pipeline_conditional_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/consisti2v/pipelines/pipeline_conditional_animation.py -------------------------------------------------------------------------------- /consisti2v/utils/frameinit_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/consisti2v/utils/frameinit_utils.py -------------------------------------------------------------------------------- /consisti2v/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/consisti2v/utils/util.py -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/environment.yaml -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/predict.py -------------------------------------------------------------------------------- /scripts/animate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/scripts/animate.py -------------------------------------------------------------------------------- /scripts/animate_autoregress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/scripts/animate_autoregress.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/ConsistI2V/HEAD/train.py --------------------------------------------------------------------------------