LyCORIS-experiments

This is taken from the repository https://huggingface.co/alea31415/LyCORIS-experiments
All the trained networks for experiments, configurations, and generated images can be found there
Updated at 2023.03.31

To make sure it does not load forever I put jpg here. Full resolution png (ranging from 20 to 144mb) can be found on the model page linked above.

General advice: Having a good dataset is more important than anything else



Trigger words

1
2
3
Anisphia, Euphyllia, Tilty, OyamaMahiro, OyamaMihari
by onono imoko, by momoko, by mochizuki kei, by kantoku, by ke-ta
aniscreen, fanart

For reference, this is what each character looks like

Anisphia
Anisphia

Euphyllia
Euphyllia

Tilty
Tilty

OyamaMahiro (white hair one) and OyamaMihari (black hair one)
OyamaMahiro+OyamaMihari

As for the styles please check the artists' pixiv yourself (note there are R-18 images)

Setting

Default setting is

  • loha net dim 8, conv dim 4, alpha 1
  • lr 2e-4 constant scheduler throughout
  • Adam8bit
  • resolution 512
  • clip skip 1

Names of the files suggest how the setting is changed with respect to this default setup.
The configuration json files can otherwsie be found in the config sub-directories that lies in each folder.
For example this is the default config.

Some observations

TL;DR

  1. Having a good dataset is by far the most important: use proper regularization set along with good captioning practice for all the images (for both training and regularization)
  2. Perhaps surprisingly, text encoder learning rate affects style training more
  3. Higher resolution and higher dimension may give better results but the improvement is often quite small and it is still unclear whether such improvement can be achieved in other ways (especially for the case of higher dimension)
  4. clip skip 1 or 2 make little difference
  5. The differences between LoRa, LoCon, and LoHa are also not pronouncing in this experiment

For a thorough comparison please refer to the generated_samples folder.

Captioning

Dataset, in general, is the most important out of all.
The common wisdom that we should prune anything that we want to be attach to the trigger word is exactly the way to go.
No tags at all (top three rows) is terrible, especially for style training.
Having all the tags (bottom three rows) remove the traits from subjects if these tags are not used during sampling (not completely true but more or less the case, see also discussion below).

00066-20230326090858

The effect of style images on characters (aka regularization set)

I do believe regularization images are important, far more important than tweaking any hyperparameters. They slow down training but also make sure that the undesired aspect are less baked into the model if we have images of other types, even if they are not for the subjects we train for.

Comparing the models trained with and without style images, we can see that models trained with general style images have less anime styles baked in. The difference is particularly clear for Tilty, who only have anime screenshots for training.

00103-20230327084923

On the other hand, the default clothes seem to be better trained when there are no regularization images. While this may seem beneficial, it is worth noticing that I keep all the output tags. Therefore, in a sense we only want to get a certain outfit when we prompt them explicitly. The magic of having the trigger words to fill in what is not in caption seems to be more pronouncing when we have regularization images. In any case, this magic will not work forever as we will eventually start overfitting. The following image show that we get images that are much closer after putting clothes in prompts.

00105-20230327090703

Finally, if your regularization images are properly tagged with of a lot of concepts, then you always have the benefit that you can combine them with the main things you train for.

Training resolution

The most prominent benefit of training at higher resolution is that it helps generating more complex/detailed background.
Chances are that you can get more details about the outfit or pupils etc.
However, training at higher-resolution is quite time-consuming and most of the time it is probably not worth it.
For example, if you want better background it can be simpler to switch the model (unless, say, you are actually training background LoRa).

00045-20230326045748
00044-20230326044731

Network dimension and alpha

This is one of the most debated topic in LoRa training.
Both the original paper and the initial implementation of LoRa for SD suggest using quite small ranks.
However, the 128 dim/alpha became the unfortunate default in many implementations for some time, which resulted in files with more than 100mb.
Every since LoCon got introduced, we advocate again the use of smaller dimension and default the value of alpha to 1.

As for LoHa, I have been insisting that the values that I am using here (net dim 8, conv dim 4, alpha 1) should be more than enough in most cases.
These values do not come from no where. In fact, after some analysis, it turns out almost every model fine-tuned from SD has the information of the weight difference matrices concentrated in fewer than 64 ranks (this applies even to WD 1.5).
Therefore, 64 should enough-- if we can get to the good point.
Nonetheless, optimization is quite tricky. Changing dimension does not only increase expressive power but also modify the optimization landscape. It is also exactly for the latter reason that alpha gets introduced.
It turns out it might be easier to get better results with larger dimension, which explains the success of compression after training.
Actually, for my 60K umamusume dataset I have LoCon extracted from fine-tuned model but I failed to directly train a LoCon on it.

To clarify all these, I test the following three setups for LoHa with net dim 32 and conv dim 16

  • lr 2e-4, alpha 1 (third one from the right)
  • lr 5e-4, alpha 1 (second one from the right)
  • lr 2e-4, net alpha 16, conv alpha 8 (the rightmost one)

I made the following observations

  • I get good results with latter two configurations, which confirms that increasing alpha and learning rate have similar effects. More precisely, I have better backgrounds and better separation between fanart and screenshot styles (only for Mihari and Euphyllia though) compared to dimension 8/4 LoHas.
  • Both of them however have their own strength and own weakness. The 5e-4 one works better for Euphyllia; fanart
    00081-20230327011335
  • Among all the networks I trained, only the dim 32/16 half alpha one can almost consistently output the correct outfit for Mihari
    00084-20230327021752
  • They seem to give better results for style training in general.
    00091-20230327040330
    00094-20230327052628
    00095-20230327055221
  • They seem to provide better style transfer. Please see the end (image of 144mb).

One interesting observation is that in the first image we get better background for small LoHa trained at higher resolution and larger LoHa trained only at resolution 512. This again suggests we may be able to get good results with small dimension if they are trained properly. It is however unclear how to achieve that. Simply increasing the learning rate to 5e-4 does not seem to be sufficient in this case (as can be seen from the above images).

Finally, these results do not mean that you would always want to use larger dimension, as probably you do not really need all these details that the additional dimension brings you.

Optimizer, learning rate scheduler, and learning rate

These are probably the most important things to tune after you get a good dataset, but I don't have many things to say here.
You should just find the one that works.
Some people suggest the lr finder strategy https://followfoxai.substack.com/p/find-optimal-learning-rates-for-stable
Some investigations are done here https://rentry.org/lora-training-science

I tested several things, and here is what I can say

  • Setting the learning rate larger of course makes training faster as long as it does not fry things up. Here switching the learning rate from lr 2e-4 to 5e-4 increases the likeliness. Would it however be better to train longer with smaller learning rate? This still needs more test. (I will zoom in on the case where we only change the text encoder learning rate below.)
  • Cosine schduler learns slower than constant scheduler for a fixed learning rate.
  • It seems that Dadaptation trains faster at styles but slower at characters. Why?
    Since the outputs of Dadaptation seems to change more over time, I guess it may just have picked a larger learning rate. Does this then mean larger learning rate would pick the style first?

00074-20230326204643

00097-20230327063406

Text encoder learning rate

It is often suggested to set the text encoder learning rate to be smaller than that of unet.
This of course causes training to be slower white it is hard to evaluate the benefit.
To begin, let me show how it actually slow downs the trainer process. In contrary to the common belief, it actually affects style training more than character training. I half the text encoder learning rate for the following experiments.

  • This is what you get for characters. If the trigger words are put properly you barely see the difference, not mentioning the case of single character training that most people focus on. The interesting point however comes from the blending between Mahiro and Mihari due to sharing Oyama in the trigger words. Large text encoder learning rate help reduces the blending faster.
    00106-20230327112316
  • For styles you can see training with lower text encoder rate actually makes training slower (the largest difference happens to ke-ta and momoko)
    00107-20230327112855
    00017-20230325211523

In total I train the model two times longer. After spending some time here are two situations that reveal the potential benefit of having smaller text encoder learning rate.

  • In my training set I have anime screenshots, tagged with aniscreen and fanarts, taggedd with fanart.
    Although they are balanced to have the same weight, the consistency of anime screenshots seems to drive the characters toward this style by default.
    When I put aniscreen to negative, this causes bad results in general but the one trained with lower text encoder learning rate seems to survive the best.
    Note that Tilty (second image) is only trained with anime screenshots.

00165-20230327023658
00085-20230327030828

  • Training at lower text encoder rate should better preserve the model's ability to understand the prompt.
    This aspect is difficult to test, but it seems to be confirmed by this "umbrella" experiment (though some other setup, such as lora and higher dimension seem to give even better results).

00083-20230327015201

There may be some other disadvantages other than slower training but this needs to be further explored.
In any case, I still believe if we want to get the best result we should avoid compeletely text encoder training and do pivotal tuning instead.

LoRa, LoCon, LoHa

It may seem weird to mention this so late, but honestly I do not find them to give very different result here.
The common belief is that LoHa trains more style than LoCon, which in turn trains more style than LoRa.
This seems to be mostly true, but the difference is quite subtle. Moreover, I would rather use the word "texture" instead of style.
I especially test whether any of them would be more favorable when transferred to different base model. No conclusion here.

  • LoHA
    00067-20230326093940
  • LoCon
    00068-20230326095613
  • LoRa
    00069-20230326102713
  • Without additional network
    00070-20230326103743

Some remarks

  • In the above images, LoHa has dim 8/4, LoCon has dim 16/8, and LoRa has dim 8. LoHa and LoCon thus have roughly the same size (25mb) while LoRa is smaller (11mb). LoRa with smaller dimension seems to train faster here.
  • Some comparaison between LoHa and LoCon do suggest that LoHa indeed trains faster at texture while LoCon faster at higher level traits. The difference is however very small so it is not really conclusive.

00034-20230325234457
00035-20230325235521

  • In an early experiment I saw that LoHa and LoCon training led to quite different results. One possible explanation is that I train on NAI here while I trained on BP in that experiment.

Clip skip 1 versus 2

People say that we should train on clip skip 2 for anime models, but honestly I cannot see any difference. The only important thing is to use the same clip skip for training and sampling.

00013-20230325200652
00014-20230325203156

Style Transfer

The simple rule seems to be that we get better style transfer if the styles are better trained.
Although it is impossible to make any conclusion from a single seed, dim 32/16 half alpha is clearly the winner here, followed by dim 32/16 5e-4.
Among the remaining ones LoRa and Dadaption are probably slightly better. This can be explained by the fact that they both train faster (LoRa has smaller dimension while Dadaption supposedly uses larger learning rate) and thus the model just knows the styles better. However, the Dadaption LoHa completely fails at altering the style of Tilty, who only has anime screenshots in training set. After some tests I find this can be fixed by by weighting the prompts differently.

xyz_grid-0000-20230327073826

A Certain Theory on Lora Transfer

TL;DR

  1. If you want to switch style when switching model, you should use precursor model such as NAI or ACertainty. On the other hand, if you want the trained style to be retained on a family of models, you should use a model that is close to all these models (potentially a merge).
  2. If you want style of model X when using it, you train on ancestor of X that does not have this style. Especially, if you want to make cosplay images, you should better train on NAI and not train directly on NeverEndingDream or ChilloutMix.
  3. I do not note any significant difference in terms of training speed when trained on different base model. The only case that trains faster seems to be when base model already somewhat knows the concept, but this would also hurt transfer performance because we learn less in the Lora.
  4. Don't use SD 1.4/1.5 for anime training unless you train something at the scale of WD.

The above kind of assumes that all the descendant models are style models. If you have a character descendant model with various styles, it can be more effective to train your style lora on source model and then apply it to the character model.

Inspired by the introduction of AnyLora and an experiment done by @Machi#8166. I decided to further investigate the influence of base model. It is worth noticing that you may get different results due to difference in dataset and hyperparameters, though I do believe the general trend should be preserved. However, I do get some result that is contradictory to what Machi observed. In particular, counterfeit does not seem to be a good base model to train on in my experiments. Now, let's dive in.

I only put jpgs below, I invite you to download pngs from https://huggingface.co/alea31415/LyCORIS-experiments/tree/main/generated_samples_0329 to check the details yourself

Setup

I used the default setup described earlier except that I set clip skip to 2 here to be coherent with what the creator of AnyLora suggests.
I train on the following 15 models

  1. NAI
  2. AnyLora
  3. NeverEndingDream (NED)
  4. Counterfeit-V2.5
  5. Aom3a1
  6. Anything4.5
  7. ACertainty (AC)
  8. BP
  9. NMFSAN
  10. VBP2.2
  11. MyneFactoryBaseV1.0 (MFB)
  12. RacyMix
  13. PastelMix
  14. ChilloutMix

In addition to the above we test on the following models

  1. Mix-Pro-V3
  2. Fantasy Background
  3. Salt Mix
  4. nep (the model is not online anymore)

As we will see later, it seems that the above models can be roughly separate into the following groups

  • Source (Ancestor) Models: NAI, AC
  • Anything/Orange family: AOM, Anything, AnyLora, Counterfeit, NED
  • Photorealistic: NeverEndingDream, ChilloutMix
  • Pastel: RacyMix, PastelMix
  • AC family: ACertainty, BP, NMFSAN (BP is trained from AC and NMFSAN is trained from BP)
  • Outliers: the remaining ones, and notably MFB

Character Training

Most people who train characters want to be able to switch style by switching models. In this case you indeed want to use NAI, or otherwise the mysterious ACertainty

Anisphia
xyz_grid-0007-20230330035309

Tilty
xyz_grid-0011-20230330053814

Character training is mostly robust to model transfer. Nonetheless, if you pick models that are far away, such as MFB, or pastel-mix, to train on, the results could be much worse.

Of course you can have two characters in the same image as well.

Anisphia X Euphyllia
xyz_grid-0017-20230330074416

Style Training

In style training people may want to retain the styles when switching model but instead benefit from other components of the base model (such as more detailed background). Unfortunately, it seems that there is not a single go-to model for style training. The general trend is, you get better style preservation if the two models are close enough, and in particular if they are in the same group described above. This is actually already clear with the anime styles in the previous images. Let us check some more specific examples.

ke-ta
xyz_grid-0004-20230330021202

onono imoko
xyz_grid-0006-20230330033041

A lot of people like to use models of the orange and anything series. In this case, as claimed AnyLora can indeed be a good base model for style training. However, training on Anything, AOM, or even NED could also be more or less effective.

It is also worth noticing that while training on PastelMix and RacyMix give bad results on other models in general, they allow for style to be preserved on each other. Finally, training on ChilloutMix can kill the photo-realistic style of NED and vice versa.

Why?

While a thorough explanation on how the model transfers would require much more investigation, I think one way to explain this is by considering the "style vector" pointing to every single model. When training on a merge of various models, these style vectors get corrected or compensated so the style is retained when switching to these closely related models. On the other hand, the source model is unaware of these style vectors. After training on it and transferring to another model the style vectors are added and we indeed recover the style of the new base model.

A Case Study on AC family

It is known that BP is trained from AC and NMFSAN is trained from BP, so this provides a good test case on how this affects the final result. According to the above theory, training on upstream model helps more get the style of downstream model, and this seems to be indeed the case.

We get more fkey style on nmfsan with the LoHa trained on AC (and not with the LoHa trained on nmfsan)
xyz_grid-0024-20230330084608

Same for shion
xyz_grid-0025-20230330084846

On the other hand, styles trained into LoHas would be less effective if applying from downstream models to upstream model, because what they need to achieve that may be much less than what the upstream model would need. We can also observe in early examples that LoHas trained on AnyLora can give bad result on NAI.

xyz_grid-0026-20230330085404
xyz_grid-0030-20230330090242

Implication for Making Cosplay Images

To summarize, if you want to have style of some model X, instead of training directly on X it would be better to train on an ancestor of X that does not contain this style.
Therefore, if you want to get cosplay of characters, you can do either of the following

  • Train on NED and add a decent amount of photos in regularization set
  • Train on NAI and transfer to NED

Lykon did show some successful results by only training with anime images on NED, but I doubt this is really optimal. Actually, he uses again a doll LoRa to reinforce the photo-realistic concept. It may be simper to just do what I suggest above.

For illustration, here is what we get by applying the LoHas trained on different base models on NeverEndingDream. As we can see, the one trained on NAI retains the most photo-realistic style (of course you can always adjusting various weight to improve things but I still get the best result with the one trained on NAI).

xyz_grid-0017-20230331061354

Some Myths

Clearly, the thing that really matters is how the model is made, and not how the model looks like. A model that is versatile in style does not make it a good base model for whatever kind of training. In fact, VBP2-2 has around 300 styles trained in but LoHa trained on top of it does not transfer well to other models.
Similarly, two models that produce similar style do not mean they transfer well to each other. Both MFB and Salt-Mix have strong anime screenshot style but a LoHa trained on MFB does not transfer well to Salt-Mix.

A Case Study on Customized Merge Model

To understand whether you can train a style to be used on a group of models by simply merging these models, I pick a few models and merge them myself to see if this is really effective. I especially choose models that are far from each other, and consider both average and add difference merges. Here are the two recipes that I use.

1
2
3
4
5
6
7
# Recipe for average merge
tmp1 = nai-full-pruned + bp_nman_e29, 0.5, fp16, ckpt
tmp2 = __O1__ + nep, 0.333, fp16, ckpt
tmp3 = __O2__ + Pastel-Mix, 0.25, fp16, ckpt
tmp4 = __O3__ + fantasyBackground_v10PrunedFp16, 0.2, fp16, ckpt
tmp5 = __O4__ + MyneFactoryBase_V1.0, 0.166, fp16, ckpt
AleaMix = __O5__ + anylora_FTMSE, 0.142, fp16, ckpt
1
2
3
4
5
6
7
# Recipe for add difference merge
tmp1 = nai-full-pruned + bp_nman_e29, 0.5, fp16, ckpt
tmp2-ad = __O1__ + nep + nai-full-pruned, 0.5, fp16, safetensors
tmp3-ad = __O2__ + Pastel-Mix + nai-full-pruned, 0.5, fp16, safetensors
tmp4-ad = __O3__ + fantasyBackground_v10PrunedFp16 + nai-full-pruned, 0.5, fp16, safetensors
tmp5-ad = __O4__ + MyneFactoryBase_V1.0 + nai-full-pruned, 0.5, fp16, safetensors
AleaMix-ad = __O5__ + anylora_FTMSE + nai-full-pruned, 0.5, fp16, safetensors

I then trained on top of tmp3, AleaMix, tmp3-ad, and AleaMix-ad. It turns out that these models are too different so it does not work very well. Getting style transfer to PastelMix and FantasyBackgrond are quite difficult. I however observe the following.

  • We generally get bad results when applying to NAI. This is in line with previous experiments.
  • We get better transfer to NMFSAN compared to most of previous LoHas that are not trained on BP family.
  • Add difference with too many models (7) with high weight (0.5) blows the model up: you can still train on it and get reasonable result but it does not transfer to individual component.
  • Add difference with a smaller number of models (4) can work. It seems to be more effective then simple average sometimes (note that how the model trained on tmp3-ad manages to cancel out the style of nep and PastelMix in the examples below).

xyz_grid-0000-20230330204940
xyz_grid-0008-20230330221018
xyz_grid-0009-20230330222021
xyz_grid-0005-20230330212715
xyz_grid-0004-20230330211628

Fun fact

While the model AleaMix-ad is barely usable, the LoHa trained on it produces very strong styles and excellent details

Results on AleaMix (the weighted sum version)
xyz_grid-0011-20230330224054

Results on AleaMix-ad (the add difference version)
xyz_grid-0012-20230330224058

However, you may also need to worry about some bad hand in such a model
00032-20230330225216

A Case Study on Training on Vanilla SD Model

Someone may believe that training on vanilla SD model would give better result. I however not advice it for anime training because you can hardly make your model usable with a small dataset. In turn you get a model that does not understand booru tags and often produces bad anatomy and bad hands.

Moreover, as we see below, all the vanilla SD models are so far away from NAI that even character cannot be transfer. It would only transfer to more photo-realistic model such as ChilloutMix (as they have a more important vanilla SD component) but this kills their photo-realistic style and make something terrible so this really there is really no interests in so doing in general.

The trend we see here is also coherent as what we have observed so far

  • When training on vanilla SD and applying to descendant model we get mostly the style of descendant model
  • The only exception is ChilloutMix for which it becomes less photo-realistic, which makes sense because it is much closer to vanilla SD
  • Training on NAI and applying to vanilla SD gives a diluted anime style or no style at all

xyz_grid-0016-20230331054835
xyz_grid-0014-20230331053913
xyz_grid-0015-20230331054327

Training Speed

It is also suggested that you train faster on AnyLora. I try to look into this in several ways but I don't see a clear difference.
Note that we should mostly focus on the diagonal (LoHa applied on the model used to train it).

First, I use the 6000step checkpoints for characters
xyz_grid-0007-20230330035309
xyz_grid-0012-20230330060311

I do not see big difference between models of the same group.
In the Tilty example I even see training on NAI, BP, and NMFSAN seems to be faster, but this is only one seed.

I move on to check the 10000step checkpoints for styles
xyz_grid-0008-20230330042204

Again there is no big difference here.

Finally I use the final checkpoint and set the weight to 0.65 as suggested by Lykon.
xyz_grid-0010-20230330051247
xyz_grid-0009-20230330044905
xyz_grid-0013-20230330062741

The only thing that I observed is that VBP2.2 seems to fit a bit quicker on the styles I test here, but it is probably because it is already trained on them (although under a different triggering mechanism as VBP2.2 is trained with embedding).

Going further

What are some good base models for "using" style LoRas

In the above experiments, it seems that some good candidates that express well the trained styles are

  • VBP2.2
  • Mix-Pro-V3
  • Counterfeit

What else

Using different base model can affect things in many other ways, such as the quality or the flexibility of the resulting LoRa. These are however very different to evaluate. I invite you to try the LoHas I trained here to see how they differ in this aspects.

A style transfer example

xyz_grid-0019-20230330082809

Dataset composition

6360 images in total

17_characters~fanart~OyamaMihari: 53
19_characters~fanart~OyamaMahiro+OyamaMihari: 47
1_artists~kantoku: 2190
24_characters~fanart~Anisphia: 37
28_characters~screenshots~Anisphia+Tilty: 24
2_artists~ke-ta: 738
2_artists~momoko: 762
2_characters~screenshots~Euphyllia: 235
3_characters~fanart~OyamaMahiro: 299
3_characters~screenshots~Anisphia: 217
3_characters~screenshots~OyamaMahiro: 210
3_characters~screenshots~OyamaMahiro+OyamaMihari: 199
3_characters~screenshots~OyamaMihari: 177
4_characters~screenshots~Anisphia+Euphyllia: 165
57_characters~fanart~Euphyllia: 16
5_artists~mochizuki_kei: 426
5_artists~onono_imoko: 373
7_characters~screenshots~Tilty: 95
9_characters~fanart~Anisphia+Euphyllia: 97
Edit
Pub: 27 Mar 2023 01:15 UTC
Edit: 02 Apr 2023 11:32 UTC
Views: 10510