gitextract_e50318u3/ ├── README.md ├── configs/ │ ├── i2v_rgb.jsonl │ ├── i2v_rgb.yaml │ ├── i2v_sketch.jsonl │ ├── i2v_sketch.yaml │ ├── model_config/ │ │ ├── inference-v1.yaml │ │ ├── inference-v2.yaml │ │ ├── inference-v3.yaml │ │ ├── model_config copy.yaml │ │ ├── model_config.yaml │ │ └── model_config_public.yaml │ ├── sparsectrl/ │ │ ├── image_condition.yaml │ │ └── latent_condition.yaml │ ├── t2v_camera.jsonl │ ├── t2v_camera.yaml │ ├── t2v_object.jsonl │ └── t2v_object.yaml ├── environment.yaml ├── generated_videos/ │ └── inference_config.json ├── i2v_video_sample.py ├── models/ │ └── Motion_Module/ │ └── Put motion module checkpoints here.txt ├── motionclone/ │ ├── models/ │ │ ├── attention.py │ │ ├── motion_module.py │ │ ├── resnet.py │ │ ├── scheduler.py │ │ ├── sparse_controlnet.py │ │ ├── unet.py │ │ └── unet_blocks.py │ ├── pipelines/ │ │ └── pipeline_animation.py │ └── utils/ │ ├── conv_layer.py │ ├── convert_from_ckpt.py │ ├── convert_lora_safetensor_to_diffusers.py │ ├── motionclone_functions.py │ ├── util.py │ └── xformer_attention.py └── t2v_video_sample.py