Assignment #3 - When Cats meet GANs

Emily Kim

This assignment seeks to explore DCGAN and CycleGAN.

Part 1: Deep Convolutional GAN

Data Augmentation

The methods of Data Augmentation I used were the following:

  1. Resize: resize width and height by 1.1
  2. Random Horizontal Flip: randomly decide to flip horizontally
  3. Random Crop: Randomly decide to crop or not to the size of the original image

DCGAN Discriminator padding

I used the formula for calculating the padding. $$P = (S(O-1) + K - I)/2$$ where P, S, O, K and I each stand for padding size, stride, output size, kernel size and input size, respectively. Hence, $$P = (2(32-1) + 4 - 64)/2 = 1$$

Differentiable Augmentation

Here in this section I report the differentiable augmentation samples from DCGAN from basic and deluxe transforms.

DCGAN_without_diffaug
This is the sample result without differentiable augmentation with basic transforms.
DCGAN_without_diffaug
This is the sample result with differentiable augmentation with basic transforms.
DCGAN_without_diffaug
This is the sample result without differentiable augmentation with deluxe transforms.
DCGAN_without_diffaug
This is the sample result with differentiable augmentation with deluxe transforms.



Experiment Loss Curve

d_basic
Discriminator Loss for basic without differentiable agumentation
g_basic
Generator Loss for basic without differentiable agumentation
d_diff
Discriminator Loss for basic with differentiable agumentation
g_diff
Generator Loss for basic with differentiable agumentation
d_del
Discriminator Loss for deluxe without differentiable agumentation
g_del
Generator Loss for basic without differentiable agumentation
d_del_diff
Discriminator Loss for basic with differentiable agumentation
g_del_diff
Generator Loss for basic with differentiable agumentation



Part 2: CycleGAN

These are the images I got from running the CycleGan on the grumpy cat.

X-Y
X-Y after 1000 iterations without cycle consistency loss
Y-X
Y-X after 1000 iterations without cycle consistency loss
X-Y
X-Y after 6500 iterations without cycle consistency loss
Y-X
Y-X after 6500 iterations without cycle consistency loss
X-Y
X-Y after 1000 iterations with cycle consistency loss
Y-X
Y-X after 1000 iterations with cycle consistency loss
X-Y
X-Y after 6500 iterations with cycle consistency loss
Y-X
Y-X after 6500 iterations with cycle consistency loss


The following are the results from apple to cat.

X-Y
X-Y after 1000 iterations without cycle consistency loss
Y-X
Y-X after 1000 iterations without cycle consistency loss
X-Y
X-Y after 6500 iterations without cycle consistency loss
Y-X
Y-X after 6500 iterations without cycle consistency loss
X-Y
X-Y after 1000 iterations with cycle consistency loss
Y-X
Y-X after 1000 iterations with cycle consistency loss
X-Y
X-Y after 6500 iterations with cycle consistency loss
Y-X
Y-X after 6500 iterations with cycle consistency loss


High Resolution Results

I also experimented with high resolution images as inputs. These are the results for the same dataset with 128x128 resolution.

X-Y
X-Y after 1000 iterations without cycle consistency loss
Y-X
Y-X after 1000 iterations without cycle consistency loss
X-Y
X-Y after 6500 iterations without cycle consistency loss
Y-X
Y-X after 6500 iterations without cycle consistency loss
X-Y
X-Y after 1000 iterations with cycle consistency loss
Y-X
Y-X after 1000 iterations with cycle consistency loss
X-Y
X-Y after 6500 iterations with cycle consistency loss
Y-X
Y-X after 6500 iterations with cycle consistency loss


These are the results for the same dataset with 256x256 resolution.

X-Y
X-Y after 1000 iterations without cycle consistency loss
Y-X
Y-X after 1000 iterations without cycle consistency loss
X-Y
X-Y after 6500 iterations without cycle consistency loss
Y-X
Y-X after 6500 iterations without cycle consistency loss
X-Y
X-Y after 1000 iterations with cycle consistency loss
Y-X
Y-X after 1000 iterations with cycle consistency loss
X-Y
X-Y after 6500 iterations with cycle consistency loss
Y-X
Y-X after 6500 iterations with cycle consistency loss