gitextract_u176_3_t/ ├── .gitignore ├── INSTALL.md ├── LICENSE.txt ├── Makefile ├── README.md ├── 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 ├── tests/ │ ├── README.md │ └── test.sh └── 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 │ ├── t5.py │ ├── tokenizers.py │ ├── vace_model.py │ ├── vae.py │ └── xlm_roberta.py ├── text2video.py ├── utils/ │ ├── __init__.py │ ├── fm_solvers.py │ ├── fm_solvers_unipc.py │ ├── prompt_extend.py │ ├── qwen_vl_utils.py │ ├── utils.py │ └── vace_processor.py └── vace.py