Understand StyleGAN network snapshots (_G, _D, Gs)
masterWhen loading pre-trained networks, you may encounter different types of snapshots:
_G: An instantaneous snapshot of the generator. Primarily used for resuming a previous training run._D: An instantaneous snapshot of the discriminator. Primarily used for resuming a previous training run.Gs: The long-term average of the generator. This version yields higher-quality results than the instantaneous snapshot and is preferred for generation tasks.