EveryDream-trainer/doc/MICROMODELS.MD

51 lines
2.4 KiB
Markdown

# Micro models
Micro models allow training quickly on a small data set in minimal time. The technique is simply training on the new data with no preservation. If you add too much data or train for too long you will damage the model notably, but it is an easy and quick way to get one character into a model.
To train a micro model, just place your 20-50 images into a training root folder
Example:
/training_samples/ted_bennett/a close up of ted bennett in a suit and tie.jpg
/training_samples/ted_bennett/ted bennett sitting on a couch next to mark wahlkberg.jpg
etc
Training root in this example will be "/training_samples/ted_bennett".
## Example
You can recreate the above model by downloading the dataset or try your own.
Dataset: https://huggingface.co/panopstor/ff7r-stable-diffusion/blob/main/ted_bennett.zip
Model: https://huggingface.co/panopstor/ff7r-stable-diffusion/blob/main/ted_bennett_259step_13minutes.ckpt
Unzip the file into your /training_samples folder. It will create a subfolder on its own to work with the trainer.
On the command line, use v1-finetune_micro.yaml which is setup for this case. You may wish to slightly change the REPEATS for your data set, with 31 images and repeasts 50 the output is fairly good and completes in just 13 minutes on an RTX 3090:
python main.py --base configs/stable-diffusion/v1-finetune_micro.yaml -t --actual_resume sd_v1-5_vae.ckpt -n ted --gpus 0, --data_root training_samples\ted_bennett
Prompt is simply "ted bennett" as "ted bennett" is in all the training images plus captions for the rest of the scene.
Some examples of output (ted bennet in a ballet skirt on stage, etc):
![ted bennett as ironman](../demo/ted_bennett_ballet.png)
![ted bennett as ironman](../demo/ted_bennett_ironman.png)
![ted bennett as ironman](../demo/ted_bannett_superman.png)
## Micro style
This is a quick test forcing a style into the model of "blacklight neon" posters. Take a look at the dataset.
Dataset: https://huggingface.co/panopstor/EveryDream/blob/main/blacklight.zip
Yaml: https://huggingface.co/panopstor/EveryDream/blob/main/v1-finetune_blacklight.yaml
Ckpt: https://huggingface.co/panopstor/EveryDream/blob/main/blacklightneon-pruned.ckpt
(note high conditional dropout of 0.15 (15%) helps quickly force the style)
Trained for a single epoch in about 20 minutes.
![blacklight neon tom cruise](../demo/blacklightneontomcruise.png)