A general fine-tuning kit geared toward image/video/audio diffusion models.
0
stars
10,679
commits
Python
primary language
Sep 3, 2026
updated
ℹ️ No data is sent to any third parties except through opt-in flag
report_to,push_to_hub, or webhooks which must be manually configured.
SimpleTuner is geared towards simplicity, with a focus on making the code easily understood. This codebase serves as a shared academic exercise, and contributions are welcome.
If you'd like to join our community, we can be found on Discord via Terminus Research Group. If you have any questions, please feel free to reach out to us there.
Please fully explore this README before embarking on the new web UI tutorial or the class command-line tutorial, as this document contains vital information that you might need to know first.
For a manually configured quick start without reading the full documentation or using any web interfaces, you can use the Quick Start guide.
For memory-constrained systems, see the DeepSpeed document which explains how to use 🤗Accelerate to configure Microsoft's DeepSpeed for optimiser state offload. For DTensor-based sharding and context parallelism, read the FSDP2 guide which covers the new FullyShardedDataParallel v2 workflow inside SimpleTuner.
For multi-node distributed training, this guide will help tweak the configurations from the INSTALL and Quickstart guides to be suitable for multi-node training, and optimising for image datasets numbering in the billions of samples.
SimpleTuner provides comprehensive training support across multiple diffusion model architectures with consistent feature availability:
full) with positive/negative/neutral sampling and per-prompt strength; see Slider LoRA guideaccelerate.GeneralTracker into simpletuner/custom-trackers and use --report_to=custom-tracker --custom_tracker=<name>SimpleTuner includes a complete multi-user training platform with enterprise-grade features—free and open source, forever.
For deployment details, see the Enterprise Guide.
SimpleTuner supports the following model families. Detailed training feature support lives in the Quickstart Guide.
| Model | Parameters | License | Commercial use |
|---|---|---|---|
| ACE-Step | 3.5B | Apache-2.0 | Yes |
| Anima | Not specified | CircleStone Labs Non-Commercial License v1.2 | No (model); outputs allowed |
| Auraflow | 6B | Apache-2.0 | Yes |
| Boogu-Image | Not specified | Apache-2.0 | Yes |
| Chroma 1 | 8.9B | Apache-2.0 | Yes |
| Cosmos2 | 2B-14B | NVIDIA Open Model License | Yes |
| Cosmos3 | 16B-65B | OpenMDW-1.1 | Yes |
| DeepFloyd IF | 0.4B-4.3B stages | DeepFloyd IF License | Abandonware |
| ERNIE-Image | Not specified | Apache-2.0 | Yes |
| Flux.1 | 8B-12B | Apache-2.0 (schnell); FLUX.1 [dev] Non-Commercial License (dev/Kontext) | Mixed by checkpoint |
| Flux.2 | 4B-32B | Apache-2.0 (klein 4B); FLUX Non-Commercial License (dev/klein 9B) | Mixed by checkpoint |
| HeartMuLa | 3B | Not specified in SimpleTuner | See upstream terms |
| HiDream | 17B (8.5B MoE) | MIT | Yes |
| Hunyuan Video | 8.3B | AGPL-3.0 | Yes (copyleft) |
| Ideogram 4 | 9B | Ideogram 4 Non-Commercial | No |
| Kandinsky 5.0 Image | 6B (lite) | MIT | Yes |
| Kandinsky 5.0 Video | 2B lite, 19B pro | MIT | Yes |
| Kwai Kolors | 2.7B | Apache-2.0 | Abandonware |
| Krea2 | Not specified | Krea 2 Community License | Yes (under $1M revenue; safeguards required) |
| LongCat Image | 6B | Apache-2.0 | Yes |
| LongCat Video | 13.6B | MIT | Yes |
| LTX Video | ~2.5B | Apache-2.0 | Yes |
| LTX Video 2 | 19B | Apache-2.0 | Yes |
| Lumina2 | 2B | Apache-2.0 | Yes |
| Mage-Flow | 4B | MIT | Yes |
| MiniMax H3 | 33B | MiniMax H3 Community License | Conditions apply (territory exclusions; authorization required in US/EU/UK/KR) |
| OmniGen | 3.8B | MIT | Yes |
| PixArt Sigma | 0.6B-0.9B | OpenRAIL++ | Yes (restricted) |
| Qwen Image | 20B | Apache-2.0 | Yes |
| Sana | 0.6B-4.8B | Apache-2.0 | Yes |
| Sana Video | 2B | Apache-2.0 | Yes |
| SD 1.x/2.x (Legacy) | 0.9B | OpenRAIL++ | Yes (restricted) |
| Stable Diffusion 3 | 2B-8B | Stability AI Community License | Yes (under $1M revenue) |
| Stable Diffusion XL | 3.5B | CreativeML OpenRAIL-M | Yes (restricted) |
| Stable Cascade (Stage C) | 1B, 3.6B prior | Not specified in SimpleTuner | Abandonware |
| Wan Video | 1.3B-14B | Apache-2.0 | Yes |
| Wan S2V | 14B | Apache-2.0 | Yes |
| Z-Image | 6B | Apache-2.0 | Yes |
| Z-Image Omni | 6B | Apache-2.0 | Yes |
| ZLab I1 | 3B | MIT | Yes |
License values are taken from SimpleTuner model helpers when available and upstream model cards/licenses for entries that were previously unspecified. Not specified in SimpleTuner means the helper does not name a license and no upstream term is summarized here; check the upstream model card before use.
diffusion_model.* keys (Flux/Flux2/Lumina2/Z-Image auto-detect ComfyUI inputs)Detailed quickstart guides are available for all supported models:
Note: Quantization (int8/fp8/nf4) significantly reduces memory requirements. See individual quickstart guides for model-specific requirements.
SimpleTuner can be installed via pip for most users:
# Base installation (CPU-only PyTorch)
pip install simpletuner
# CUDA users (NVIDIA GPUs)
pip install 'simpletuner[cuda]'
# CUDA 13 / Blackwell users (NVIDIA B-series GPUs)
pip install 'simpletuner[cuda13]' --extra-index-url https://download.pytorch.org/whl/cu130
# CUDA 13 with TransformerEngine FP8 support
pip install 'simpletuner[cuda13-transformerengine]' --extra-index-url https://download.pytorch.org/whl/cu130
# ROCm users (AMD GPUs)
pip install 'simpletuner[rocm]' --extra-index-url https://download.pytorch.org/whl/rocm7.1
# Apple Silicon users (M1/M2/M3/M4 Macs)
pip install 'simpletuner[apple]'
For manual installation or development setup, see the installation documentation.
Enable debug logs for a more detailed insight by adding export SIMPLETUNER_LOG_LEVEL=DEBUG to your environment (config/config.env) file.
For performance analysis of the training loop, setting SIMPLETUNER_TRAINING_LOOP_LOG_LEVEL=DEBUG will have timestamps that highlight any issues in your configuration.
For a comprehensive list of options available, consult this documentation.
10,679 commits
Python
82.2%
HTML
9.0%
JavaScript
6.7%
CSS
1.9%
A general fine-tuning kit geared toward image/video/audio diffusion models.
0
stars
10,679
commits
Python
primary language
Sep 3, 2026
updated
ℹ️ No data is sent to any third parties except through opt-in flag
report_to,push_to_hub, or webhooks which must be manually configured.
SimpleTuner is geared towards simplicity, with a focus on making the code easily understood. This codebase serves as a shared academic exercise, and contributions are welcome.
If you'd like to join our community, we can be found on Discord via Terminus Research Group. If you have any questions, please feel free to reach out to us there.
Please fully explore this README before embarking on the new web UI tutorial or the class command-line tutorial, as this document contains vital information that you might need to know first.
For a manually configured quick start without reading the full documentation or using any web interfaces, you can use the Quick Start guide.
For memory-constrained systems, see the DeepSpeed document which explains how to use 🤗Accelerate to configure Microsoft's DeepSpeed for optimiser state offload. For DTensor-based sharding and context parallelism, read the FSDP2 guide which covers the new FullyShardedDataParallel v2 workflow inside SimpleTuner.
For multi-node distributed training, this guide will help tweak the configurations from the INSTALL and Quickstart guides to be suitable for multi-node training, and optimising for image datasets numbering in the billions of samples.
SimpleTuner provides comprehensive training support across multiple diffusion model architectures with consistent feature availability:
full) with positive/negative/neutral sampling and per-prompt strength; see Slider LoRA guideaccelerate.GeneralTracker into simpletuner/custom-trackers and use --report_to=custom-tracker --custom_tracker=<name>SimpleTuner includes a complete multi-user training platform with enterprise-grade features—free and open source, forever.
For deployment details, see the Enterprise Guide.
SimpleTuner supports the following model families. Detailed training feature support lives in the Quickstart Guide.
| Model | Parameters | License | Commercial use |
|---|---|---|---|
| ACE-Step | 3.5B | Apache-2.0 | Yes |
| Anima | Not specified | CircleStone Labs Non-Commercial License v1.2 | No (model); outputs allowed |
| Auraflow | 6B | Apache-2.0 | Yes |
| Boogu-Image | Not specified | Apache-2.0 | Yes |
| Chroma 1 | 8.9B | Apache-2.0 | Yes |
| Cosmos2 | 2B-14B | NVIDIA Open Model License | Yes |
| Cosmos3 | 16B-65B | OpenMDW-1.1 | Yes |
| DeepFloyd IF | 0.4B-4.3B stages | DeepFloyd IF License | Abandonware |
| ERNIE-Image | Not specified | Apache-2.0 | Yes |
| Flux.1 | 8B-12B | Apache-2.0 (schnell); FLUX.1 [dev] Non-Commercial License (dev/Kontext) | Mixed by checkpoint |
| Flux.2 | 4B-32B | Apache-2.0 (klein 4B); FLUX Non-Commercial License (dev/klein 9B) | Mixed by checkpoint |
| HeartMuLa | 3B | Not specified in SimpleTuner | See upstream terms |
| HiDream | 17B (8.5B MoE) | MIT | Yes |
| Hunyuan Video | 8.3B | AGPL-3.0 | Yes (copyleft) |
| Ideogram 4 | 9B | Ideogram 4 Non-Commercial | No |
| Kandinsky 5.0 Image | 6B (lite) | MIT | Yes |
| Kandinsky 5.0 Video | 2B lite, 19B pro | MIT | Yes |
| Kwai Kolors | 2.7B | Apache-2.0 | Abandonware |
| Krea2 | Not specified | Krea 2 Community License | Yes (under $1M revenue; safeguards required) |
| LongCat Image | 6B | Apache-2.0 | Yes |
| LongCat Video | 13.6B | MIT | Yes |
| LTX Video | ~2.5B | Apache-2.0 | Yes |
| LTX Video 2 | 19B | Apache-2.0 | Yes |
| Lumina2 | 2B | Apache-2.0 | Yes |
| Mage-Flow | 4B | MIT | Yes |
| MiniMax H3 | 33B | MiniMax H3 Community License | Conditions apply (territory exclusions; authorization required in US/EU/UK/KR) |
| OmniGen | 3.8B | MIT | Yes |
| PixArt Sigma | 0.6B-0.9B | OpenRAIL++ | Yes (restricted) |
| Qwen Image | 20B | Apache-2.0 | Yes |
| Sana | 0.6B-4.8B | Apache-2.0 | Yes |
| Sana Video | 2B | Apache-2.0 | Yes |
| SD 1.x/2.x (Legacy) | 0.9B | OpenRAIL++ | Yes (restricted) |
| Stable Diffusion 3 | 2B-8B | Stability AI Community License | Yes (under $1M revenue) |
| Stable Diffusion XL | 3.5B | CreativeML OpenRAIL-M | Yes (restricted) |
| Stable Cascade (Stage C) | 1B, 3.6B prior | Not specified in SimpleTuner | Abandonware |
| Wan Video | 1.3B-14B | Apache-2.0 | Yes |
| Wan S2V | 14B | Apache-2.0 | Yes |
| Z-Image | 6B | Apache-2.0 | Yes |
| Z-Image Omni | 6B | Apache-2.0 | Yes |
| ZLab I1 | 3B | MIT | Yes |
License values are taken from SimpleTuner model helpers when available and upstream model cards/licenses for entries that were previously unspecified. Not specified in SimpleTuner means the helper does not name a license and no upstream term is summarized here; check the upstream model card before use.
diffusion_model.* keys (Flux/Flux2/Lumina2/Z-Image auto-detect ComfyUI inputs)Detailed quickstart guides are available for all supported models:
Note: Quantization (int8/fp8/nf4) significantly reduces memory requirements. See individual quickstart guides for model-specific requirements.
SimpleTuner can be installed via pip for most users:
# Base installation (CPU-only PyTorch)
pip install simpletuner
# CUDA users (NVIDIA GPUs)
pip install 'simpletuner[cuda]'
# CUDA 13 / Blackwell users (NVIDIA B-series GPUs)
pip install 'simpletuner[cuda13]' --extra-index-url https://download.pytorch.org/whl/cu130
# CUDA 13 with TransformerEngine FP8 support
pip install 'simpletuner[cuda13-transformerengine]' --extra-index-url https://download.pytorch.org/whl/cu130
# ROCm users (AMD GPUs)
pip install 'simpletuner[rocm]' --extra-index-url https://download.pytorch.org/whl/rocm7.1
# Apple Silicon users (M1/M2/M3/M4 Macs)
pip install 'simpletuner[apple]'
For manual installation or development setup, see the installation documentation.
Enable debug logs for a more detailed insight by adding export SIMPLETUNER_LOG_LEVEL=DEBUG to your environment (config/config.env) file.
For performance analysis of the training loop, setting SIMPLETUNER_TRAINING_LOOP_LOG_LEVEL=DEBUG will have timestamps that highlight any issues in your configuration.
For a comprehensive list of options available, consult this documentation.
10,679 commits
Python
82.2%
HTML
9.0%
JavaScript
6.7%
CSS
1.9%