gitextract_zgae_61m/ ├── .gitignore ├── INSTALL.md ├── LICENSE.txt ├── Makefile ├── README.md ├── examples/ │ ├── test.yaml │ └── tracks/ │ ├── bear.pth │ ├── deco.pth │ ├── fish.pth │ ├── giraffe.pth │ ├── human.pth │ └── sea.pth ├── generate.py ├── gradio/ │ ├── fl2v_14B_singleGPU.py │ ├── i2v_14B_singleGPU.py │ ├── t2i_14B_singleGPU.py │ ├── t2v_1.3B_singleGPU.py │ ├── t2v_14B_singleGPU.py │ └── vace.py ├── pyproject.toml ├── requirements.txt ├── run_example.sh ├── tests/ │ ├── README.md │ └── test.sh ├── tools/ │ ├── get_track_from_videos.py │ ├── plot_user_inputs.py │ ├── trajectory_editor/ │ │ ├── app.py │ │ └── templates/ │ │ └── index.html │ └── visualize_trajectory.py └── wan/ ├── __init__.py ├── configs/ │ ├── __init__.py │ ├── shared_config.py │ ├── wan_i2v_14B.py │ ├── wan_t2v_14B.py │ └── wan_t2v_1_3B.py ├── distributed/ │ ├── __init__.py │ ├── fsdp.py │ └── xdit_context_parallel.py ├── first_last_frame2video.py ├── image2video.py ├── modules/ │ ├── __init__.py │ ├── attention.py │ ├── clip.py │ ├── model.py │ ├── motion_patch.py │ ├── t5.py │ ├── tokenizers.py │ ├── vace_model.py │ ├── vae.py │ └── xlm_roberta.py ├── utils/ │ ├── __init__.py │ ├── fm_solvers.py │ ├── fm_solvers_unipc.py │ ├── motion.py │ ├── prompt_extend.py │ ├── qwen_vl_utils.py │ ├── utils.py │ └── vace_processor.py └── vace.py