I just discovered a stylegan surprise.
In stylegan2, the discriminator learning rate can't be set. G_lrate is used for both the generator *and* the discriminator's rate.
Everyone's been fooling themselves. It's currently impossible to set the discriminator's learning rate.
My tips are, try the two-time update rule - set the generator learning rate to half of the discriminator learning rate - try increasing the minibatch size - and, yes, if all else fails, also try lowering the learning rate.
Feb 19, 2020 · 6:54 AM UTC
To confirm this, you can grep the stylegan2 codebase for D_lrate and see that it's not used anywhere.