- Generative Adversarial Networks Projects
- Kailash Ahirwar
- 106字
- 2021-07-02 13:38:51
Training 3D-GANs
Training a 3D-GAN is similar to training a vanilla GAN. The steps involved in the training of a 3D-GAN are as follows:
- Sample a 200-dimensional noise vector from a Gaussian (normal) distribution.
- Generate a fake image using the generator model.
- Train the generator network on real images (sampled from real data) and on the fake images generated by the generator network.
- Use the adversarial model to train the generator model. Don't train the discriminator model.
- Repeat these steps for a specified number of epochs.
We will explore these steps in detail in a later section. Let's move on to setting up a project.