Building GAN
model contains the following steps:
Build
generator
model, and chooseoptimization
function for this model.Build
discriminator
model, and chooseoptimization
function for this model.Build
GAN
network:3.1 Build model with the architecture of the first 2 models (
generator
,discriminator
)3.2 Choose
optimization
function for this network
There are some issues I'm not sure about them:
- It seems that
generator
model anddiscriminator
model can have differentoptimization
functions, am I right ?
- What is the purpose of this choice ?
- Is it realistic and data scientist use this ?
- It seems that we can choose different
optimization
function forGAN
model which is not the same asgenerator
ordiscriminator
models.
- Am I right ?
- What is the purpose of this choice ?
- Is it realistic and data scientist use this ?