gitextract_t6ymel6r/ ├── .gitignore ├── LICENSE.txt ├── README.md ├── __assets__/ │ ├── animations/ │ │ └── compare/ │ │ └── ffmpeg │ └── docs/ │ ├── animatediff.md │ └── gallery.md ├── animatediff/ │ ├── data/ │ │ └── dataset.py │ ├── models/ │ │ ├── attention.py │ │ ├── motion_module.py │ │ ├── resnet.py │ │ ├── sparse_controlnet.py │ │ ├── unet.py │ │ └── unet_blocks.py │ ├── pipelines/ │ │ └── pipeline_animation.py │ └── utils/ │ ├── convert_from_ckpt.py │ ├── convert_lora_safetensor_to_diffusers.py │ └── util.py ├── app.py ├── configs/ │ ├── inference/ │ │ ├── inference-v1.yaml │ │ ├── inference-v2.yaml │ │ ├── inference-v3.yaml │ │ └── sparsectrl/ │ │ ├── image_condition.yaml │ │ └── latent_condition.yaml │ ├── prompts/ │ │ ├── 1_animate/ │ │ │ ├── 1_1_animate_RealisticVision.yaml │ │ │ ├── 1_2_animate_FilmVelvia.yaml │ │ │ ├── 1_3_animate_ToonYou.yaml │ │ │ ├── 1_4_animate_MajicMix.yaml │ │ │ ├── 1_5_animate_RcnzCartoon.yaml │ │ │ ├── 1_6_animate_Lyriel.yaml │ │ │ └── 1_7_animate_Tusun.yaml │ │ ├── 2_motionlora/ │ │ │ └── 2_motionlora_RealisticVision.yaml │ │ └── 3_sparsectrl/ │ │ ├── 3_1_sparsectrl_i2v.yaml │ │ ├── 3_2_sparsectrl_rgb_RealisticVision.yaml │ │ └── 3_3_sparsectrl_sketch_RealisticVision.yaml │ └── training/ │ └── v1/ │ ├── image_finetune.yaml │ └── training.yaml ├── requirements.txt ├── scripts/ │ └── animate.py └── train.py