├── README.md ├── assets ├── teaser.png └── test.png ├── configs └── inference │ └── infer.yaml ├── environment.yaml ├── infer.sh ├── inference.py └── src ├── models ├── attention.py ├── ip_adapter.py ├── motion_module.py ├── resnet.py ├── unet.py └── unet_blocks.py ├── pipelines └── pipeline_i2v_adapter.py └── utils ├── convert_from_ckpt.py ├── convert_lora_safetensor_to_diffusers.py ├── freeinit_utils.py └── util.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/README.md -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /assets/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/assets/test.png -------------------------------------------------------------------------------- /configs/inference/infer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/configs/inference/infer.yaml -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/environment.yaml -------------------------------------------------------------------------------- /infer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/infer.sh -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/inference.py -------------------------------------------------------------------------------- /src/models/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/src/models/attention.py -------------------------------------------------------------------------------- /src/models/ip_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/src/models/ip_adapter.py -------------------------------------------------------------------------------- /src/models/motion_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/src/models/motion_module.py -------------------------------------------------------------------------------- /src/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/src/models/resnet.py -------------------------------------------------------------------------------- /src/models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/src/models/unet.py -------------------------------------------------------------------------------- /src/models/unet_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/src/models/unet_blocks.py -------------------------------------------------------------------------------- /src/pipelines/pipeline_i2v_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/src/pipelines/pipeline_i2v_adapter.py -------------------------------------------------------------------------------- /src/utils/convert_from_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/src/utils/convert_from_ckpt.py -------------------------------------------------------------------------------- /src/utils/convert_lora_safetensor_to_diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/src/utils/convert_lora_safetensor_to_diffusers.py -------------------------------------------------------------------------------- /src/utils/freeinit_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/src/utils/freeinit_utils.py -------------------------------------------------------------------------------- /src/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlingTeam/I2V-Adapter/HEAD/src/utils/util.py --------------------------------------------------------------------------------