jacobgil / keras-dcgan

Keras implementation of Deep Convolutional Generative Adversarial Networks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Why did not use Conv2DTranspose rather than Conv2D in the generator

lestel opened this issue · comments

the related paper all say they use Conv2DTranspose

Yes. That is one of their key contributions.
They say to

  1. use strided convolutions instead of max-pooling layer
  2. use cond2dTranspose instead of upsampling
  3. use batch normalization layers
  4. use relu activations for intermediate layers

@jacobgil You've implemented none of those. So, this is not DC GAN right?