Skip to content

Latest commit

 

History

History
80 lines (44 loc) · 1.39 KB

README.md

File metadata and controls

80 lines (44 loc) · 1.39 KB

DCGAN pytorch CIFAR10

Implement of DCGAN pytorch using CIFAR10
Unsupervised Representation Learning with Deep Convolutional Generative Adversarial Networks, ICLR 2016

dcgan1

Train

python dcgan.py --dataroot [DATAROOT] --dataset [CIFAR] --model [DCGAN]

Configures

  model: dcgan
  is_train: True
  dataroot: dataset/cifar
  dataset: cifar
  download: True
  epochs: 25
  batch_size: 128
  image_size: 64
  nc: 3
  nz: 100
  ngf: 64
  ndf: 64
  learning_rate: 0.0002
  beta1: 0.5
  ngpu: 1
  cuda: True
  load_D: False
  load_G: False
  workers: 2
  generator_iters: 10000
  gpuids: [0]

Results

  • generated images

dcgan-cifar

  • logs

dcgan_losses

References