OneTrainer is a one-stop solution for all your stable diffusion training needs.
Hardware for development sponsored by https://shakker.ai
Installing OneTrainer requires Python >=3.10 and <3.13. You can download Python here https://www.python.org/downloads/windows/. Then follow these steps:
Automatic installation
git clone https://github.com/Nerogar/OneTrainer.git
install.bat
install.sh
Manual installation
git clone https://github.com/Nerogar/OneTrainer.git
cd OneTrainer
python -m venv venv
venv\scripts\activate
source venv/bin/activate
pip install -r requirements.txt
In some linux distribution, you might need to install libGL, for instance on ubuntu you will need to run:
sudo apt-get update
sudo apt-get install libgl1
Automatic update
update.bat
or update.sh
Manual update
git pull
venv\scripts\activate
pip install -r requirements.txt --force-reinstall
To start the UI, run start-ui.bat
. You can find a quick start guide here., and a more
detailed overview of different topics here.
If you need more control, OneTrainer supports two modes of operation. Command line only, and a UI. All commands need to be run inside the active venv created during installation.
All functionality is split into different scrips located in the scripts
directory. This currently includes:
train.py
The central training scripttrain_ui.py
A UI for trainingcaption_ui.py
A UI for manual or automatic captioning and mask creation for masked trainingconvert_model_ui.py
A UI for model conversionsconvert_model.py
A utility to convert between different model formatssample.py
A utility to sample any modelcreate_train_files.py
A utility to create files needed when training only from the CLIgenerate_captions.py
A utility to automatically create captions for your datasetgenerate_masks.py
A utility to automatically create masks for your datasetcalculate_loss.py
A utility to calculate the training loss of every image in your datasetTo learn more about the different parameters, execute <script-name> -h
. For example python scripts\train.py -h
If you are on Mac or Linux, read the launch script documentation for detailed information about how to run OneTrainer and its various scripts on your system.
Contributions are always welcome in any form. You can open issues, participate in discussions, or even open pull requests for new or improved functionality. You can find more information 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):
pip install -r requirements-dev.txt
pre-commit install
(Be sure to run those commands without activating your venv or Conda environment, since pre-commit is supposed to be installed outside any environment.)
Now 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.