OneTrainer is a one-stop solution for all your Diffusion training needs.
- Supported models: Ernie Image, Z-Image, Qwen Image, FLUX.1, Flux.2 Dev and Klein, Chroma, Stable Diffusion 1.5, 2.0, 2.1, 3.0, 3.5, SDXL, Würstchen-v2, Stable Cascade, PixArt-Alpha, PixArt-Sigma, Sana, Hunyuan Video and inpainting models
- Model formats: diffusers and ckpt models
- Training methods: Full fine-tuning, LoRA, embeddings
- Masked Training: Let the training focus on just certain parts of the samples
- Automatic backups: Fully back up your training progress regularly during training. This includes all information to seamlessly continue training
- Image augmentation: Apply random transforms such as rotation, brightness, contrast or saturation to each image sample to quickly create a more diverse dataset
- TensorBoard: A simple TensorBoard integration to track the training progress
- Multiple prompts per image: Train the model on multiple different prompts per image sample
- Noise Scheduler Rescaling: From the paper Common Diffusion Noise Schedules and Sample Steps are Flawed
- EMA: Train your own EMA model. Optionally keep EMA weights in CPU memory to reduce VRAM usage
- Aspect Ratio Bucketing: Automatically train on multiple aspect ratios at a time. Just select the target resolutions, buckets are created automatically
- Multi-Resolution Training: Train multiple resolutions at the same time
- Dataset Tooling: Automatically caption your dataset using BLIP, BLIP2 and WD-1.4, or create masks for masked training using ClipSeg or Rembg
- Model Tooling: Convert between different model formats from a simple UI
- Sampling UI: Sample the model during training without switching to a different application
Note
Explore our 📚 wiki for essential tips and tutorials after installing. Start here!. For command-line usage, see the CLI Mode section.
Important
Installing OneTrainer manually requires Python >=3.10 and <3.14. You can download Python at https://www.python.org/downloads/windows/. Then follow the below manual steps.
- Clone the repository
git clone https://github.com/Nerogar/OneTrainer.git - Run:
- Windows: Double click or execute
install.bat - Linux and Mac: Execute
install.sh
- Windows: Double click or execute
- Install
pixi: Guide - Clone the repository
git clone https://github.com/Nerogar/OneTrainer.git - Navigate into the cloned directory
cd OneTrainer - Perform the installation:
pixi install --locked -e cuda(Replacecudabyrocmorcpuif needed).
Note: We don't support ROCm on Windows currently.
- Run
update.batorupdate.sh
- Cd to folder containing the repo
cd OneTrainer - Pull changes
git pull - Recreate the environment
pixi install --locked -e cuda
OneTrainer can be used in two primary modes: a graphical user interface (GUI) and a command-line interface (CLI) for finer control.
For a technically focused quick start, see the Quick Start Guide and for a broader overview, see the Overview documentation. Otherwise visit our wiki!
- To start the UI, navigate to the OneTrainer folder and double-click
start-ui.bat
- Execute
start-ui.shand the GUI will pop up.
If you need more control or a headless approach OT also supports the command-line interface. All commands need to be run inside the active pixi environment created during installation.
All functionality is split into different scripts located in the scripts directory. This currently includes:
train.pyThe central training scripttrain_ui.pyA UI for trainingcaption_ui.pyA UI for manual or automatic captioning and mask creation for masked trainingconvert_model_ui.pyA UI for model conversionsconvert_model.pyA utility to convert between different model formatssample.pyA utility to sample any modelcreate_train_files.pyA utility to create files needed when training only from the CLIgenerate_captions.pyA utility to automatically create captions for your datasetgenerate_masks.pyA utility to automatically create masks for your datasetcalculate_loss.pyA utility to calculate the training loss of every image in your dataset
To learn more about the different parameters, execute ./run-cmd.sh <script-name> -h, without the .py extension. For example ./run-cmd.sh scripts/train -h. On Windows, you can do ./run-cmd.ps1 <script-name> -h. An example of running training scripts on Windows is:
./run-cmd.ps1 train --config-path ./config.jsonYou can also activate a shell, you'd select your gpu env (usually cuda: https://pixi.prefix.dev/latest/advanced/pixi_shell/
If you are on Mac or Linux, you can also read the launch script documentation for detailed information about how to run OneTrainer and its various scripts on your system. Windows users are to refer lib.include.ps1, it mostly mirrors linux launch scripts.
For general troubleshooting or questions, ask in Discussions, check the Wiki or join our Discord.
If you encounter a reproducible error you first must run update.bat or update.sh and confirm the issue is still able to be reproduced. Then export anonymized debug information to help us solve an issue you are facing and upload it as part of your Github Issues submission.
- On Windows double click
export_debug.bat - On Unix-based systems execute
./run-cmd.sh generate_debug_report
These will both create a debug_report.log.
Warning
We require this file for GitHub issues going forward. Failure to provide it or not manually providing the necessary info will lead to the issue being closed in most circumstances
Contributions are always welcome in any form. For new functionality please open a Github discussion or join our discord so that we can align and avoid duplicated work. You can find more information about contributing here.
Before you start looking at the code, I recommend reading about the project structure here. For in depth discussions, you should consider joining the Discord server.
You also NEED to install the required developer dependencies for your current user and enable the Git commit hooks, via the following commands (works on all platforms; Windows, Linux and Mac):
Important
Be sure to run those commands without activating your venv or Conda environment, since pre-commit is supposed to be installed outside any environment.
pixi global install pre-commitNow all of your commits will automatically be verified for common errors and code style issues, so that code reviewers can focus on the architecture of your changes without wasting time on style/formatting issues, thus greatly improving the chances that your pull request will be accepted quickly and effortlessly.
- MGDS: A custom dataset implementation for Pytorch that is built around the idea of a node based graph.
- Stability Matrix: A swiss-army knife installer which wraps and installs a broad range of diffusion software packages including OneTrainer
- Visions of Chaos: A collection of machine learning tools that also includes OneTrainer.
- StableTuner: A now defunct (archived) training application for Stable Diffusion. OneTrainer takes a lot of inspiration from StableTuner and wouldn't exist without it.

