A modern community fork of BasicSR and traiNNer-redux.
- Install Python if it's not already installed. A minimum of version Python 3.11 is required.
- Install the latest stable version of PyTorch.
- Clone the repository:
- To use the git command line, navigate to where you want to install traiNNer-redux, and enter this command (install git first if it's not already installed):
git clone https://github.com/the-database/traiNNer-redux.git
- To use a GUI for git, follow the instructions for that git client. For GitHub Desktop, for example, click on the green Code button near the top of this page, click Open with GitHub Desktop and follow the instructions.
- To use the git command line, navigate to where you want to install traiNNer-redux, and enter this command (install git first if it's not already installed):
- Open a command window in the
traiNNer-redux
directory where you cloned the repository. Run this command to install the remaining Python dependencies:pip install .
Refer to the wiki for a full training guide and benchmarks.
The repository comes with several configs that are ready to use out of the box, as well as a tiny dataset for testing purposes only. To confirm that your PC can run the training software successfully, run the following command from the traiNNer-redux
folder:
python train.py --auto_resume -opt ./options/train/SPAN/SPAN.yml
You should see the following output within a few minutes, depending on your GPU speed:
...
2024-07-02 21:40:56,593 INFO: Model [SRModel] is created.
2024-07-02 21:40:56,668 INFO: Start training from epoch: 0, iter: 0
2024-07-02 21:41:17,816 INFO: [4x_SP..][epoch: 0, iter: 100, lr:(1.000e-04,)] [performance: 4.729] [eta: 14:11:33] l_g_mssim: 1.0000e+00 l_g_percep: 3.5436e+00 l_g_hsluv: 4.3935e-01 l_g_gan: 2.4346e+00 l_g_total: 7.4175e+00 l_d_real: 2.4136e-01 out_d_real: 2.9309e+00 l_d_fake: 5.2773e-02 out_d_fake: -2.4104e+01
The last line shows the progress of training after 100 iterations. If you get this far without any errors, your PC is able to train successfully. Press ctrl+C
to end the training run.
- Navigate to
traiNNer-redux/options/train
, select the architecture you want to train, and open theyml
file in that folder in a text editor. A text editor that supports YAML syntax highlighting is recommended, such as VS Code or Notepad++. For example, to train SPAN, opentraiNNer-redux/options/train/SPAN/SPAN.yml
. - At the top of the file, set the
name
to the name of the model you want to train. Give it a unique name so you can differentiate it from other training runs. - Set the scale depending on what scale you want to train the model on. 2x doubles the width and height of the image, for example. Not all architectures support all scales. Supported scales appear next to the scale in a comment, so
# 2, 4
means the architecture only supports a scale of 2 or 4. - Set the paths to your dataset HR and LR images, at
dataroot_gt
anddataroot_lq
under thetrain:
section. The HR images and LR images should match in numer of images and filenames. For each matching LR/HR pair, the image resolutions should work with the selected scale, so if a scale of 2 is selected then each HR must be 2x the resolution of its matching LR image. - If you want to enable validation during training, set
val_enabled
totrue
and set the paths to your validation HR and LR images, atdataroot_gt
anddataroot_lq
under theval
section. - If you want to use a pretrain model, set the path of the pretrain model at
pretrain_network_g
and remove the#
to uncomment that line.
Run the following command to start training. Change ./options/train/arch/config.yml
to point to the config file you set up in the previous step.
python train.py --auto_resume -opt ./options/train/arch/config.yml
For example, to train with the SPAN config:
python train.py --auto_resume -opt ./options/train/SPAN/SPAN.yml
To pause training, press ctrl+C
or close the command window. To resume training, run the same command that was used to start training. The --auto_resume
flag will resume training from when it was paused.
Models are saved in the safetensors
format to traiNNer-redux/experiments/<name>/models
, where name
is whatever was used in the config file. chaiNNer can be used to run most models. If you want to run the model on images during training to monitor the progress of the model, set up validation in the config file, and find the validation results in traiNNer-redux/experiments/<name>/visualization
.
The test script can also be used to test trained models, which is required to test models with architectures not yet supported by chaiNNer. For example, to test SPANPlus model, open the config file at ./options/test/SPANPlus/SPANPlus.yml
, and update the following:
- Edit the
dataroot_lq
option to point to a folder that contains the images you want to run the model on. - Make sure the options under
network_g
match the options undernetwork_g
in the training config file that you used. For example, if you trainedSPANPlus_STS
, then set the type toSPANPlus_STS
undernetwork_g
in the test config file as well. - Update
pretrain_network_g
to point to the path of the model you want to test.
Then run this command to run the model on the images as specified in the config file:
python test.py -opt ./options/test/SPANPlus/SPANPlus.yml
- OpenModelDB: Repository of AI upscaling models, which can be used as pretrain models to train new models. Models trained with this repo can be submitted to OMDB.
- chaiNNer: General purpose tool for AI upscaling and image processing, models trained with this repo can be run on chaiNNer. chaiNNer can also assist with dataset preparation.
- WTP Dataset Destroyer: Tool to degrade high quality images, which can be used to prepare the low quality images for the training dataset.
- helpful-scripts: Collection of scripts written to improve experience training AI models.
- Enhance Everything! Discord Server: Get help training a model, share upscaling results, submit your trained models, and more.
traiNNer-redux is released under the Apache License 2.0. See LICENSE for individual licenses and acknowledgements.
- This repository is a fork of traiNNer-redux which itself is a fork of BasicSR.
- Network architectures are imported from Spandrel.
- The SPANPlus architecture is from umzi2/SPANPlus which is a modification of SPAN.
- Several enhancements reference implementations from Corpsecreate/neosr and its original repo neosr.
- Members of the Enhance Everything Discord server: Corpsecreate, joeyballentine, Kim2091.