Skip to content

Latest commit

 

History

History

dcgan_mnist

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Deep Convolutional GAN (DC-GAN)

dcgan_gen_disc Source

Model Info

A DC-GAN is a direct extension of the GAN, except that it explicitly uses convolutional and transposed convolutional layers in the discriminator and generator, respectively. The discriminator is made up of strided convolutional layers, batch norm layers, and LeakyReLU activations. The generator is comprised of transposed convolutional layers, batch norm layers, and ReLU activations.

Training

cd vision/dcgan_mnist
julia --project dcgan_mnist.jl

Results

2000 training steps

2000 training steps

5000 training steps

5000 training steps

8000 training steps

8000 training steps

9380 training steps

9380 training steps

References