Simple Tensorflow implementation of SphereGAN (CVPR 2019 Oral) | paper | supplementary materials
mnist
andcifar10
are used inside keras- For
your dataset
, put images like this:
├── dataset
└── YOUR_DATASET_NAME
├── xxx.jpg (name, format doesn't matter)
├── yyy.png
└── ...
> python main.py --dataset mnist --gan_type sphere --phase train
> python main.py --dataset mnist --gan_type sphere --phase test
- The paper only posted the results for
32x32 images
, but I also tried64x64
Junho Kim