Click to expand
This repository provides scripts for training LoRA (Low-Rank Adaptation) models with HunyuanVideo, Wan2.1/2.2, FramePack, FLUX.1 Kontext, FLUX.2 dev/klein, Qwen-Image, and Z-Image architectures.
This repository is unofficial and not affiliated with the official repositories of these architectures.
This repository is under development.
We are grateful to the following companies for their generous sponsorship:
If you find this project helpful, please consider supporting its development via GitHub Sponsors. Your support is greatly appreciated!
GitHub Discussions Enabled: We've enabled GitHub Discussions for community Q&A, knowledge sharing, and technical information exchange. Please use Issues for bug reports and feature requests, and Discussions for questions and sharing experiences. Join the conversation →
-
June 24, 2026
- Added experimental support for Krea 2 (LoRA training and inference). See PR #980 for details.
- For details, please refer to the documentation.
- Added experimental support for Krea 2 (LoRA training and inference). See PR #980 for details.
-
June 19, 2026
- Added experimental support for Ideogram4 (LoRA training and inference). Many thanks to sdbds for PR #966. Follow-ups were made in PR #975 and PR #977. Please refer to the PRs for detailed changes.
- For details, please refer to the documentation.
- JSON format prompts are recommended, but natural language training is also possible.
- Training settings details are unknown, so community information sharing is welcome.
- Added experimental support for Ideogram4 (LoRA training and inference). Many thanks to sdbds for PR #966. Follow-ups were made in PR #975 and PR #977. Please refer to the PRs for detailed changes.
-
June 16, 2026
- Added H2D-only block swap, an optimized block swap mode for LoRA (LoHa/LoKr) training, available for all architectures. Enable it with
--block_swap_h2d_only. See PR #972.- For frozen-base training, the base weights on the CPU and GPU are identical, so the classic block swap's device-to-host (D2H) copy is pure overhead. H2D-only keeps a permanent master copy on the CPU and only ever transfers host-to-device, removing the D2H transfer entirely. This can improve training throughput, with the largest benefit when using
--fp8_base/--fp8_scaled. - Requires
--gradient_checkpointing. The number of GPU ring buffers used for streaming can be tuned with--block_swap_ring_size(default2;1minimizes VRAM). - There is also a new standalone Block Swap documentation covering all block swap options.
- For frozen-base training, the base weights on the CPU and GPU are identical, so the classic block swap's device-to-host (D2H) copy is pure overhead. H2D-only keeps a permanent master copy on the CPU and only ever transfers host-to-device, removing the D2H transfer entirely. This can improve training throughput, with the largest benefit when using
- Added H2D-only block swap, an optimized block swap mode for LoRA (LoHa/LoKr) training, available for all architectures. Enable it with
-
June 13, 2026
- Added the
--save_precisionoption for network weights and changed the default save precision to fp32. Thank you rockerBOO PR #967.- Breaking Change: The default save precision for LoRA files has been changed to fp32.
- This preserves the precision of LoRA weights during training and is useful for post-processing such as post-hoc EMA, merging, extraction, and weight analysis.
- LoRA files may be about twice as large as before when training with
--mixed_precision bf16(fp16). To keep the previous behavior, specify--save_precision bf16(fp16). - Please refer to the HunyuanVideo documentation for details.
- Added the
-
June 8, 2026
- Added experimental support for HiDream-O1-Image (LoRA training, full finetuning, and inference). See PR #964.
- Please refer to the documentation for details.
- An optional DINOv3 auxiliary perceptual loss is also available. See the advanced configuration documentation.
- Many thanks to sdbds for PR #947 (followed by PR #955), which this support is based on. Please open the PRs if you would like to review the changes in detail.
- Added experimental support for HiDream-O1-Image (LoRA training, full finetuning, and inference). See PR #964.
-
May 22, 2026
- Performed a large-scale internal refactoring to improve code quality and maintainability. See PR #950
- We have taken care to ensure that there are no direct impacts on users. For details and to report any issues, please refer to this discussion.
- Performed a large-scale internal refactoring to improve code quality and maintainability. See PR #950
We are grateful to everyone who has been contributing to the Musubi Tuner ecosystem through documentation and third-party tools. To support these valuable contributions, we recommend working with our releases as stable reference points, as this project is under active development and breaking changes may occur.
You can find the latest release and version history in our releases page.
This repository provides recommended instructions to help AI agents like Claude and Gemini understand our project context and coding standards.
To use them, you need to opt-in by creating your own configuration file in the project root.
Quick Setup:
-
Create a
CLAUDE.md,GEMINI.md, and/orAGENTS.mdfile in the project root. -
Add the following line to your
CLAUDE.mdto import the repository's recommended prompt (currently they are the almost same):@./.ai/claude.prompt.md
or for Gemini:
@./.ai/gemini.prompt.md
You may be also import the prompt depending on the agent you are using with the custom prompt file such as
AGENTS.md. -
You can now add your own personal instructions below the import line (e.g.,
Always include a short summary of the change before diving into details.).
This approach ensures that you have full control over the instructions given to your agent while benefiting from the shared project context. Your CLAUDE.md, GEMINI.md and AGENTS.md (as well as Claude's .mcp.json) are already listed in .gitignore, so they won't be committed to the repository.
- VRAM: 12GB or more recommended for image training, 24GB or more for video training
- Actual requirements depend on resolution and training settings. For 12GB, use a resolution of 960x544 or lower and use memory-saving options such as
--blocks_to_swap,--fp8_llm, etc.
- Actual requirements depend on resolution and training settings. For 12GB, use a resolution of 960x544 or lower and use memory-saving options such as
- Main Memory: 64GB or more recommended, 32GB + swap may work
- Memory-efficient implementation
- Windows compatibility confirmed (Linux compatibility confirmed by community)
- Multi-GPU training (using Accelerate), documentation will be added later
For detailed information on specific architectures, configurations, and advanced features, please refer to the documentation below.
Architecture-specific:
- HunyuanVideo
- Wan2.1/2.2
- Wan2.1/2.2 (Single Frame)
- FramePack
- FramePack (Single Frame)
- FLUX.1 Kontext
- Qwen-Image
- Z-Image
- HiDream-O1-Image
- HunyuanVideo 1.5
- Kandinsky 5
- FLUX.2
Common Configuration & Usage:
- Dataset Configuration
- Advanced Configuration
- Sampling during Training
- Block Swap (CPU Offloading for Memory Saving)
- Tools and Utilities
- Using torch.compile
Python 3.10 or later is required (verified with 3.10).
Create a virtual environment and install PyTorch and torchvision matching your CUDA version.
PyTorch 2.5.1 or later is required (see note).
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu124Install the required dependencies using the following command.
pip install -e .Optionally, you can use FlashAttention and SageAttention (for inference only; see SageAttention Installation for installation instructions).
Optional dependencies for additional features:
ascii-magic: Used for dataset verificationmatplotlib: Used for timestep visualizationtensorboard: Used for logging training progressprompt-toolkit: Used for interactive prompt editing in Wan2.1 and FramePack inference scripts. If installed, it will be automatically used in interactive mode. Especially useful in Linux environments for easier prompt editing.
pip install ascii-magic matplotlib tensorboard prompt-toolkitYou can also install using uv, but installation with uv is experimental. Feedback is welcome.
- Install uv (if not already present on your OS).
curl -LsSf https://astral.sh/uv/install.sh | shFollow the instructions to add the uv path manually until you restart your session...
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"Follow the instructions to add the uv path manually until you reboot your system... or just reboot your system at this point.
Model download procedures vary by architecture. Please refer to the architecture-specific documents in the Documentation section for instructions.
Please refer to here.
Pre-caching procedures vary by architecture. Please refer to the architecture-specific documents in the Documentation section for instructions.
Run accelerate config to configure Accelerate. Choose appropriate values for each question based on your environment (either input values directly or use arrow keys and enter to select; uppercase is default, so if the default value is fine, just press enter without inputting anything). For training with a single GPU, answer the questions as follows:
- In which compute environment are you running?: This machine
- Which type of machine are you using?: No distributed training
- Do you want to run your training on CPU only (even if a GPU / Apple Silicon / Ascend NPU device is available)?[yes/NO]: NO
- Do you wish to optimize your script with torch dynamo?[yes/NO]: NO
- Do you want to use DeepSpeed? [yes/NO]: NO
- What GPU(s) (by id) should be used for training on this machine as a comma-seperated list? [all]: all
- Would you like to enable numa efficiency? (Currently only supported on NVIDIA hardware). [yes/NO]: NO
- Do you wish to use mixed precision?: bf16Note: In some cases, you may encounter the error ValueError: fp16 mixed precision requires a GPU. If this happens, answer "0" to the sixth question (What GPU(s) (by id) should be used for training on this machine as a comma-separated list? [all]:). This means that only the first GPU (id 0) will be used.
Training and inference procedures vary significantly by architecture. Please refer to the architecture-specific documents in the Documentation section and the various configuration documents for detailed instructions.
sdbsd has provided a Windows-compatible SageAttention implementation and pre-built wheels here: https://github.com/sdbds/SageAttention-for-windows. After installing triton, if your Python, PyTorch, and CUDA versions match, you can download and install the pre-built wheel from the Releases page. Thanks to sdbsd for this contribution.
For reference, the build and installation instructions are as follows. You may need to update Microsoft Visual C++ Redistributable to the latest version.
-
Download and install triton 3.1.0 wheel matching your Python version from here.
-
Install Microsoft Visual Studio 2022 or Build Tools for Visual Studio 2022, configured for C++ builds.
-
Clone the SageAttention repository in your preferred directory:
git clone https://github.com/thu-ml/SageAttention.git
-
Open
x64 Native Tools Command Prompt for VS 2022from the Start menu under Visual Studio 2022. -
Activate your venv, navigate to the SageAttention folder, and run the following command. If you get a DISTUTILS not configured error, set
set DISTUTILS_USE_SDK=1and try again:python setup.py install
This completes the SageAttention installation.
If you specify torch for --attn_mode, use PyTorch 2.5.1 or later (earlier versions may result in black videos).
If you use an earlier version, use xformers or SageAttention.
This repository is unofficial and not affiliated with the official repositories of the supported architectures.
This repository is experimental and under active development. While we welcome community usage and feedback, please note:
- This is not intended for production use
- Features and APIs may change without notice
- Some functionalities are still experimental and may not work as expected
- Video training features are still under development
If you encounter any issues or bugs, please create an Issue in this repository with:
- A detailed description of the problem
- Steps to reproduce
- Your environment details (OS, GPU, VRAM, Python version, etc.)
- Any relevant error messages or logs
We welcome contributions! Please see CONTRIBUTING.md for details.
Code under the hunyuan_model directory is modified from HunyuanVideo and follows their license.
Code under the hunyuan_video_1_5 directory is modified from HunyuanVideo 1.5 and follows their license.
Code under the wan directory is modified from Wan2.1. The license is under the Apache License 2.0.
Code under the frame_pack directory is modified from FramePack. The license is under the Apache License 2.0.
Other code is under the Apache License 2.0. Some code is copied and modified from Diffusers.