#!/usr/bin/env python # coding: utf-8 # # Generative Adversarial Networks (GANs) # # So far in CS231N, all the applications of neural networks that we have explored have been **discriminative models** that take an input and are trained to produce a labeled output. This has ranged from straightforward classification of image categories to sentence generation (which was still phrased as a classification problem, our labels were in vocabulary space and we’d learned a recurrence to capture multi-word labels). In this notebook, we will expand our repetoire, and build **generative models** using neural networks. Specifically, we will learn how to build models which generate novel images that resemble a set of training images. # # ### What is a GAN? # # In 2014, [Goodfellow et al.](https://arxiv.org/abs/1406.2661) presented a method for training generative models called Generative Adversarial Networks (GANs for short). In a GAN, we build two different neural networks. Our first network is a traditional classification network, called the **discriminator**. We will train the discriminator to take images, and classify them as being real (belonging to the training set) or fake (not present in the training set). Our other network, called the **generator**, will take random noise as input and transform it using a neural network to produce images. The goal of the generator is to fool the discriminator into thinking the images it produced are real. # # We can think of this back and forth process of the generator ($G$) trying to fool the discriminator ($D$), and the discriminator trying to correctly classify real vs. fake as a minimax game: # $$\underset{G}{\text{minimize}}\; \underset{D}{\text{maximize}}\; \mathbb{E}_{x \sim p_\text{data}}\left[\log D(x)\right] + \mathbb{E}_{z \sim p(z)}\left[\log \left(1-D(G(z))\right)\right]$$ # where $z \sim p(z)$ are the random noise samples, $G(z)$ are the generated images using the neural network generator $G$, and $D$ is the output of the discriminator, specifying the probability of an input being real. In [Goodfellow et al.](https://arxiv.org/abs/1406.2661), they analyze this minimax game and show how it relates to minimizing the Jensen-Shannon divergence between the training data distribution and the generated samples from $G$. # # To optimize this minimax game, we will aternate between taking gradient *descent* steps on the objective for $G$, and gradient *ascent* steps on the objective for $D$: # 1. update the **generator** ($G$) to minimize the probability of the __discriminator making the correct choice__. # 2. update the **discriminator** ($D$) to maximize the probability of the __discriminator making the correct choice__. # # While these updates are useful for analysis, they do not perform well in practice. Instead, we will use a different objective when we update the generator: maximize the probability of the **discriminator making the incorrect choice**. This small change helps to allevaiate problems with the generator gradient vanishing when the discriminator is confident. This is the standard update used in most GAN papers, and was used in the original paper from [Goodfellow et al.](https://arxiv.org/abs/1406.2661). # # In this assignment, we will alternate the following updates: # 1. Update the generator ($G$) to maximize the probability of the discriminator making the incorrect choice on generated data: # $$\underset{G}{\text{maximize}}\; \mathbb{E}_{z \sim p(z)}\left[\log D(G(z))\right]$$ # 2. Update the discriminator ($D$), to maximize the probability of the discriminator making the correct choice on real and generated data: # $$\underset{D}{\text{maximize}}\; \mathbb{E}_{x \sim p_\text{data}}\left[\log D(x)\right] + \mathbb{E}_{z \sim p(z)}\left[\log \left(1-D(G(z))\right)\right]$$ # # ### What else is there? # Since 2014, GANs have exploded into a huge research area, with massive [workshops](https://sites.google.com/site/nips2016adversarial/), and [hundreds of new papers](https://github.com/hindupuravinash/the-gan-zoo). Compared to other approaches for generative models, they often produce the highest quality samples but are some of the most difficult and finicky models to train (see [this github repo](https://github.com/soumith/ganhacks) that contains a set of 17 hacks that are useful for getting models working). Improving the stabiilty and robustness of GAN training is an open research question, with new papers coming out every day! For a more recent tutorial on GANs, see [here](https://arxiv.org/abs/1701.00160). There is also some even more recent exciting work that changes the objective function to Wasserstein distance and yields much more stable results across model architectures: [WGAN](https://arxiv.org/abs/1701.07875), [WGAN-GP](https://arxiv.org/abs/1704.00028). # # # GANs are not the only way to train a generative model! For other approaches to generative modeling check out the [deep generative model chapter](http://www.deeplearningbook.org/contents/generative_models.html) of the Deep Learning [book](http://www.deeplearningbook.org). Another popular way of training neural networks as generative models is Variational Autoencoders (co-discovered [here](https://arxiv.org/abs/1312.6114) and [here](https://arxiv.org/abs/1401.4082)). Variatonal autoencoders combine neural networks with variationl inference to train deep generative models. These models tend to be far more stable and easier to train but currently don't produce samples that are as pretty as GANs. # # Here's an example of what your outputs from the 3 different models you're going to train should look like... note that GANs are sometimes finicky, so your outputs might not look exactly like this... this is just meant to be a *rough* guideline of the kind of quality you can expect: # # ![caption](gan_outputs_pytorch.png) # ## Setup # In[68]: import torch import torch.nn as nn from torch.nn import init from torch.autograd import Variable import torchvision import torchvision.transforms as T import torch.optim as optim from torch.utils.data import DataLoader from torch.utils.data import sampler import torchvision.datasets as dset import numpy as np import matplotlib.pyplot as plt import matplotlib.gridspec as gridspec get_ipython().run_line_magic('matplotlib', 'inline') plt.rcParams['figure.figsize'] = (10.0, 8.0) # set default size of plots plt.rcParams['image.interpolation'] = 'nearest' plt.rcParams['image.cmap'] = 'gray' def show_images(images): images = np.reshape(images, [images.shape[0], -1]) # images reshape to (batch_size, D) sqrtn = int(np.ceil(np.sqrt(images.shape[0]))) sqrtimg = int(np.ceil(np.sqrt(images.shape[1]))) fig = plt.figure(figsize=(sqrtn, sqrtn)) gs = gridspec.GridSpec(sqrtn, sqrtn) gs.update(wspace=0.05, hspace=0.05) for i, img in enumerate(images): ax = plt.subplot(gs[i]) plt.axis('off') ax.set_xticklabels([]) ax.set_yticklabels([]) ax.set_aspect('equal') plt.imshow(img.reshape([sqrtimg,sqrtimg])) return def preprocess_img(x): return 2 * x - 1.0 def deprocess_img(x): return (x + 1.0) / 2.0 def rel_error(x,y): return np.max(np.abs(x - y) / (np.maximum(1e-8, np.abs(x) + np.abs(y)))) def count_params(model): """Count the number of parameters in the current TensorFlow graph """ param_count = np.sum([np.prod(p.size()) for p in model.parameters()]) return param_count answers = np.load('gan-checks-tf.npz') # ## Dataset # GANs are notoriously finicky with hyperparameters, and also require many training epochs. In order to make this assignment approachable without a GPU, we will be working on the MNIST dataset, which is 60,000 training and 10,000 test images. Each picture contains a centered image of white digit on black background (0 through 9). This was one of the first datasets used to train convolutional neural networks and it is fairly easy -- a standard CNN model can easily exceed 99% accuracy. # # To simplify our code here, we will use the PyTorch MNIST wrapper, which downloads and loads the MNIST dataset. See the [documentation](https://github.com/pytorch/vision/blob/master/torchvision/datasets/mnist.py) for more information about the interface. The default parameters will take 5,000 of the training examples and place them into a validation dataset. The data will be saved into a folder called `MNIST_data`. # In[69]: class ChunkSampler(sampler.Sampler): """Samples elements sequentially from some offset. Arguments: num_samples: # of desired datapoints start: offset where we should start selecting from """ def __init__(self, num_samples, start=0): self.num_samples = num_samples self.start = start def __iter__(self): return iter(range(self.start, self.start + self.num_samples)) def __len__(self): return self.num_samples NUM_TRAIN = 50000 NUM_VAL = 5000 NOISE_DIM = 96 batch_size = 128 mnist_train = dset.MNIST('./cs231n/datasets/MNIST_data', train=True, download=True, transform=T.ToTensor()) loader_train = DataLoader(mnist_train, batch_size=batch_size, sampler=ChunkSampler(NUM_TRAIN, 0)) mnist_val = dset.MNIST('./cs231n/datasets/MNIST_data', train=True, download=True, transform=T.ToTensor()) loader_val = DataLoader(mnist_val, batch_size=batch_size, sampler=ChunkSampler(NUM_VAL, NUM_TRAIN)) imgs = loader_train.__iter__().next()[0].view(batch_size, 784).numpy().squeeze() show_images(imgs) # ## Random Noise # Generate uniform noise from -1 to 1 with shape `[batch_size, dim]`. # # Hint: use `torch.rand`. # In[70]: def sample_noise(batch_size, dim): """ Generate a PyTorch Tensor of uniform random noise. Input: - batch_size: Integer giving the batch size of noise to generate. - dim: Integer giving the dimension of noise to generate. Output: - A PyTorch Tensor of shape (batch_size, dim) containing uniform random noise in the range (-1, 1). """ return torch.Tensor(batch_size, dim).uniform_(-1, 1) # Make sure noise is the correct shape and type: # In[71]: def test_sample_noise(): batch_size = 3 dim = 4 torch.manual_seed(231) z = sample_noise(batch_size, dim) np_z = z.cpu().numpy() assert np_z.shape == (batch_size, dim) assert torch.is_tensor(z) assert np.all(np_z >= -1.0) and np.all(np_z <= 1.0) assert np.any(np_z < 0.0) and np.any(np_z > 0.0) print('All tests passed!') test_sample_noise() # ## Flatten # # Recall our Flatten operation from previous notebooks... this time we also provide an Unflatten, which you might want to use when implementing the convolutional generator. We also provide a weight initializer (and call it for you) that uses Xavier initialization instead of PyTorch's uniform default. # In[72]: class Flatten(nn.Module): def forward(self, x): N, C, H, W = x.size() # read in N, C, H, W return x.view(N, -1) # "flatten" the C * H * W values into a single vector per image class Unflatten(nn.Module): """ An Unflatten module receives an input of shape (N, C*H*W) and reshapes it to produce an output of shape (N, C, H, W). """ def __init__(self, N=-1, C=128, H=7, W=7): super(Unflatten, self).__init__() self.N = N self.C = C self.H = H self.W = W def forward(self, x): return x.view(self.N, self.C, self.H, self.W) def initialize_weights(m): if isinstance(m, nn.Linear) or isinstance(m, nn.ConvTranspose2d): init.xavier_uniform(m.weight.data) # ## CPU / GPU # By default all code will run on CPU. GPUs are not needed for this assignment, but will help you to train your models faster. If you do want to run the code on a GPU, then change the `dtype` variable in the following cell. # In[73]: #dtype = torch.FloatTensor dtype = torch.cuda.FloatTensor ## UNCOMMENT THIS LINE IF YOU'RE ON A GPU! # # Discriminator # Our first step is to build a discriminator. Fill in the architecture as part of the `nn.Sequential` constructor in the function below. All fully connected layers should include bias terms. The architecture is: # * Fully connected layer from size 784 to 256 # * LeakyReLU with alpha 0.01 # * Fully connected layer from 256 to 256 # * LeakyReLU with alpha 0.01 # * Fully connected layer from 256 to 1 # # Recall that the Leaky ReLU nonlinearity computes $f(x) = \max(\alpha x, x)$ for some fixed constant $\alpha$; for the LeakyReLU nonlinearities in the architecture above we set $\alpha=0.01$. # # The output of the discriminator should have shape `[batch_size, 1]`, and contain real numbers corresponding to the scores that each of the `batch_size` inputs is a real image. # In[7]: def discriminator(): """ Build and return a PyTorch model implementing the architecture above. """ model = nn.Sequential(Flatten(), nn.Linear(784, 256), nn.LeakyReLU(negative_slope=0.01, inplace=True), nn.Linear(256, 256), nn.LeakyReLU(negative_slope=0.01, inplace=True), nn.Linear(256, 1)) return model # Test to make sure the number of parameters in the discriminator is correct: # In[8]: def test_discriminator(true_count=267009): model = discriminator() cur_count = count_params(model) if cur_count != true_count: print('Incorrect number of parameters in discriminator. Check your achitecture.') else: print('Correct number of parameters in discriminator.') test_discriminator() # # Generator # Now to build the generator network: # * Fully connected layer from noise_dim to 1024 # * ReLU # * Fully connected layer with size 1024 # * ReLU # * Fully connected layer with size 784 # * TanH # * To clip the image to be [-1,1] # In[9]: def generator(noise_dim=NOISE_DIM): """ Build and return a PyTorch model implementing the architecture above. """ model = nn.Sequential(nn.Linear(noise_dim, 1024), nn.ReLU(inplace=True), nn.Linear(1024, 1024), nn.ReLU(inplace=True), nn.Linear(1024, 784), nn.Tanh()) return model # Test to make sure the number of parameters in the generator is correct: # In[10]: def test_generator(true_count=1858320): model = generator(4) cur_count = count_params(model) if cur_count != true_count: print('Incorrect number of parameters in generator. Check your achitecture.') else: print('Correct number of parameters in generator.') test_generator() # # GAN Loss # # Compute the generator and discriminator loss. The generator loss is: # $$\ell_G = -\mathbb{E}_{z \sim p(z)}\left[\log D(G(z))\right]$$ # and the discriminator loss is: # $$ \ell_D = -\mathbb{E}_{x \sim p_\text{data}}\left[\log D(x)\right] - \mathbb{E}_{z \sim p(z)}\left[\log \left(1-D(G(z))\right)\right]$$ # Note that these are negated from the equations presented earlier as we will be *minimizing* these losses. # # **HINTS**: You should use the `bce_loss` function defined below to compute the binary cross entropy loss which is needed to compute the log probability of the true label given the logits output from the discriminator. Given a score $s\in\mathbb{R}$ and a label $y\in\{0, 1\}$, the binary cross entropy loss is # # $$ bce(s, y) = y * \log(s) + (1 - y) * \log(1 - s) $$ # # A naive implementation of this formula can be numerically unstable, so we have provided a numerically stable implementation for you below. # # You will also need to compute labels corresponding to real or fake and use the logit arguments to determine their size. Make sure you cast these labels to the correct data type using the global `dtype` variable, for example: # # # `true_labels = Variable(torch.ones(size)).type(dtype)` # # Instead of computing the expectation, we will be averaging over elements of the minibatch, so make sure to combine the loss by averaging instead of summing. # In[11]: def bce_loss(input, target): """ Numerically stable version of the binary cross-entropy loss function. As per https://github.com/pytorch/pytorch/issues/751 See the TensorFlow docs for a derivation of this formula: https://www.tensorflow.org/api_docs/python/tf/nn/sigmoid_cross_entropy_with_logits Inputs: - input: PyTorch Variable of shape (N, ) giving scores. - target: PyTorch Variable of shape (N,) containing 0 and 1 giving targets. Returns: - A PyTorch Variable containing the mean BCE loss over the minibatch of input data. """ neg_abs = - input.abs() loss = input.clamp(min=0) - input * target + (1 + neg_abs.exp()).log() return loss.mean() # In[12]: def discriminator_loss(logits_real, logits_fake): """ Computes the discriminator loss described above. Inputs: - logits_real: PyTorch Variable of shape (N,) giving scores for the real data. - logits_fake: PyTorch Variable of shape (N,) giving scores for the fake data. Returns: - loss: PyTorch Variable containing (scalar) the loss for the discriminator. """ N, _ = logits_real.size() loss = (bce_loss(logits_real, Variable(torch.ones(N)).type(dtype)) + bce_loss(logits_fake, Variable(torch.zeros(N)).type(dtype))) return loss def generator_loss(logits_fake): """ Computes the generator loss described above. Inputs: - logits_fake: PyTorch Variable of shape (N,) giving scores for the fake data. Returns: - loss: PyTorch Variable containing the (scalar) loss for the generator. """ N, _ = logits_fake.size() loss = bce_loss(logits_fake, Variable(torch.ones(N)).type(dtype)) return loss # Test your generator and discriminator loss. You should see errors < 1e-7. # In[13]: def test_discriminator_loss(logits_real, logits_fake, d_loss_true): d_loss = discriminator_loss(Variable(torch.Tensor(logits_real)).type(dtype), Variable(torch.Tensor(logits_fake)).type(dtype)).data.cpu().numpy() print("Maximum error in d_loss: %g"%rel_error(d_loss_true, d_loss)) test_discriminator_loss(answers['logits_real'], answers['logits_fake'], answers['d_loss_true']) # In[14]: def test_generator_loss(logits_fake, g_loss_true): g_loss = generator_loss(Variable(torch.Tensor(logits_fake)).type(dtype)).data.cpu().numpy() print("Maximum error in g_loss: %g"%rel_error(g_loss_true, g_loss)) test_generator_loss(answers['logits_fake'], answers['g_loss_true']) # # Optimizing our loss # Make a function that returns an `optim.Adam` optimizer for the given model with a 1e-3 learning rate, beta1=0.5, beta2=0.999. You'll use this to construct optimizers for the generators and discriminators for the rest of the notebook. # In[15]: def get_optimizer(model): """ Construct and return an Adam optimizer for the model with learning rate 1e-3, beta1=0.5, and beta2=0.999. Input: - model: A PyTorch model that we want to optimize. Returns: - An Adam optimizer for the model with the desired hyperparameters. """ optimizer = optim.Adam(model.parameters(), lr=1e-3, betas=(0., 0.999)) return optimizer # # Training a GAN! # # We provide you the main training loop... you won't need to change this function, but we encourage you to read through and understand it. # In[16]: def run_a_gan(D, G, D_solver, G_solver, discriminator_loss, generator_loss, show_every=250, batch_size=128, noise_size=96, num_epochs=10): """ Train a GAN! Inputs: - D, G: PyTorch models for the discriminator and generator - D_solver, G_solver: torch.optim Optimizers to use for training the discriminator and generator. - discriminator_loss, generator_loss: Functions to use for computing the generator and discriminator loss, respectively. - show_every: Show samples after every show_every iterations. - batch_size: Batch size to use for training. - noise_size: Dimension of the noise to use as input to the generator. - num_epochs: Number of epochs over the training dataset to use for training. """ iter_count = 0 for epoch in range(num_epochs): for x, _ in loader_train: if len(x) != batch_size: continue D_solver.zero_grad() real_data = Variable(x).type(dtype) logits_real = D(2* (real_data - 0.5)).type(dtype) g_fake_seed = Variable(sample_noise(batch_size, noise_size)).type(dtype) fake_images = G(g_fake_seed).detach() logits_fake = D(fake_images.view(batch_size, 1, 28, 28)) d_total_error = discriminator_loss(logits_real, logits_fake) d_total_error.backward() D_solver.step() G_solver.zero_grad() g_fake_seed = Variable(sample_noise(batch_size, noise_size)).type(dtype) fake_images = G(g_fake_seed) gen_logits_fake = D(fake_images.view(batch_size, 1, 28, 28)) g_error = generator_loss(gen_logits_fake) g_error.backward() G_solver.step() if (iter_count % show_every == 0): print('Iter: {}, D: {:.4}, G:{:.4}'.format(iter_count,d_total_error.data[0],g_error.data[0])) imgs_numpy = fake_images.data.cpu().numpy() show_images(imgs_numpy[0:16]) plt.show() print() iter_count += 1 # Well that wasn't so hard, was it? In the iterations in the low 100s you should see black backgrounds, fuzzy shapes as you approach iteration 1000, and decent shapes, about half of which will be sharp and clearly recognizable as we pass 3000. # In[17]: # Make the discriminator D = discriminator().type(dtype) # Make the generator G = generator().type(dtype) # Use the function you wrote earlier to get optimizers for the Discriminator and the Generator D_solver = get_optimizer(D) G_solver = get_optimizer(G) # Run it! run_a_gan(D, G, D_solver, G_solver, discriminator_loss, generator_loss) # # Least Squares GAN # We'll now look at [Least Squares GAN](https://arxiv.org/abs/1611.04076), a newer, more stable alernative to the original GAN loss function. For this part, all we have to do is change the loss function and retrain the model. We'll implement equation (9) in the paper, with the generator loss: # $$\ell_G = \frac{1}{2}\mathbb{E}_{z \sim p(z)}\left[\left(D(G(z))-1\right)^2\right]$$ # and the discriminator loss: # $$ \ell_D = \frac{1}{2}\mathbb{E}_{x \sim p_\text{data}}\left[\left(D(x)-1\right)^2\right] + \frac{1}{2}\mathbb{E}_{z \sim p(z)}\left[ \left(D(G(z))\right)^2\right]$$ # # # **HINTS**: Instead of computing the expectation, we will be averaging over elements of the minibatch, so make sure to combine the loss by averaging instead of summing. When plugging in for $D(x)$ and $D(G(z))$ use the direct output from the discriminator (`scores_real` and `scores_fake`). # In[60]: def ls_discriminator_loss(scores_real, scores_fake): """ Compute the Least-Squares GAN loss for the discriminator. Inputs: - scores_real: PyTorch Variable of shape (N,) giving scores for the real data. - scores_fake: PyTorch Variable of shape (N,) giving scores for the fake data. Outputs: - loss: A PyTorch Variable containing the loss. """ N, _ = scores_real.size() loss_real = 0.5*torch.mean(torch.pow(scores_real-Variable(torch.ones(N)).type(dtype), 2)) loss_fake = 0.5*torch.mean(torch.pow(scores_fake, 2)) loss = loss_real + loss_fake return loss def ls_generator_loss(scores_fake): """ Computes the Least-Squares GAN loss for the generator. Inputs: - scores_fake: PyTorch Variable of shape (N,) giving scores for the fake data. Outputs: - loss: A PyTorch Variable containing the loss. """ N, _ = scores_fake.size() loss = 0.5*torch.mean(torch.pow(scores_fake-Variable(torch.ones(N)).type(dtype), 2)) return loss # Before running a GAN with our new loss function, let's check it: # In[64]: def test_lsgan_loss(score_real, score_fake, d_loss_true, g_loss_true): d_loss = ls_discriminator_loss(Variable(torch.Tensor(score_real)).type(dtype), Variable(torch.Tensor(score_fake)).type(dtype)).data.cpu().numpy() g_loss = ls_generator_loss(Variable(torch.Tensor(score_fake)).type(dtype)).data.cpu().numpy() print("Maximum error in d_loss: %g"%rel_error(d_loss_true, d_loss)) print("Maximum error in g_loss: %g"%rel_error(g_loss_true, g_loss)) test_lsgan_loss(answers['logits_real'], answers['logits_fake'], answers['d_loss_lsgan_true'], answers['g_loss_lsgan_true']) # In[65]: D_LS = discriminator().type(dtype) G_LS = generator().type(dtype) D_LS_solver = get_optimizer(D_LS) G_LS_solver = get_optimizer(G_LS) run_a_gan(D_LS, G_LS, D_LS_solver, G_LS_solver, ls_discriminator_loss, ls_generator_loss) # # INLINE QUESTION 1 # Describe how the visual quality of the samples changes over the course of training. Do you notice anything about the distribution of the samples? How do the results change across different training runs? # As in the TensorFlow notebook, the network outputs similar images for different noise inputs in the beginning. After further training, the number of classes it starts to generate diversifies. # # Deeply Convolutional GANs # In the first part of the notebook, we implemented an almost direct copy of the original GAN network from Ian Goodfellow. However, this network architecture allows no real spatial reasoning. It is unable to reason about things like "sharp edges" in general because it lacks any convolutional layers. Thus, in this section, we will implement some of the ideas from [DCGAN](https://arxiv.org/abs/1511.06434), where we use convolutional networks # # #### Discriminator # We will use a discriminator inspired by the TensorFlow MNIST classification tutorial, which is able to get above 99% accuracy on the MNIST dataset fairly quickly. # * Reshape into image tensor (Use Unflatten!) # * 32 Filters, 5x5, Stride 1, Leaky ReLU(alpha=0.01) # * Max Pool 2x2, Stride 2 # * 64 Filters, 5x5, Stride 1, Leaky ReLU(alpha=0.01) # * Max Pool 2x2, Stride 2 # * Flatten # * Fully Connected size 4 x 4 x 64, Leaky ReLU(alpha=0.01) # * Fully Connected size 1 # In[75]: def build_dc_classifier(): """ Build and return a PyTorch model for the DCGAN discriminator implementing the architecture above. """ return nn.Sequential( ########################### ######### TO DO ########### ########################### Unflatten(batch_size, 1, 28, 28), nn.Conv2d(1, 32, kernel_size=5, stride=1), nn.LeakyReLU(negative_slope=0.01, inplace=True), nn.MaxPool2d(2, stride=2), nn.Conv2d(32, 64, kernel_size=5, stride=1), nn.LeakyReLU(negative_slope=0.01, inplace=True), nn.MaxPool2d(2, stride=2), Flatten(), nn.Linear(1024, 1024), nn.LeakyReLU(negative_slope=0.01, inplace=True), nn.Linear(1024, 1)) data = Variable(loader_train.__iter__().next()[0]).type(dtype) b = build_dc_classifier().type(dtype) out = b(data) print(out.size()) # Check the number of parameters in your classifier as a sanity check: # In[76]: def test_dc_classifer(true_count=1102721): model = build_dc_classifier() cur_count = count_params(model) if cur_count != true_count: print('Incorrect number of parameters in generator. Check your achitecture.') else: print('Correct number of parameters in generator.') test_dc_classifer() # #### Generator # For the generator, we will copy the architecture exactly from the [InfoGAN paper](https://arxiv.org/pdf/1606.03657.pdf). See Appendix C.1 MNIST. See the documentation for [tf.nn.conv2d_transpose](https://www.tensorflow.org/api_docs/python/tf/nn/conv2d_transpose). We are always "training" in GAN mode. # * Fully connected of size 1024, ReLU # * BatchNorm # * Fully connected of size 7 x 7 x 128, ReLU # * BatchNorm # * Reshape into Image Tensor # * 64 conv2d^T filters of 4x4, stride 2, 'same' padding, ReLU # * BatchNorm # * 1 conv2d^T filter of 4x4, stride 2, 'same' padding, TanH # * Should have a 28x28x1 image, reshape back into 784 vector # In[83]: def build_dc_generator(noise_dim=NOISE_DIM): """ Build and return a PyTorch model implementing the DCGAN generator using the architecture described above. """ return nn.Sequential( ########################### ######### TO DO ########### ########################### nn.Linear(noise_dim, 1024), nn.ReLU(inplace=True), nn.BatchNorm1d(1024), nn.Linear(1024, 7*7*128), nn.ReLU(inplace=True), nn.BatchNorm1d(7*7*128), Unflatten(batch_size, 128, 7, 7), nn.ConvTranspose2d(128, 64, kernel_size=4, stride=2, padding=1), nn.ReLU(inplace=True), nn.BatchNorm2d(64), nn.ConvTranspose2d(64, 1, kernel_size=4, stride=2, padding=1), nn.Tanh(), Flatten()) test_g_gan = build_dc_generator().type(dtype) test_g_gan.apply(initialize_weights) fake_seed = Variable(torch.randn(batch_size, NOISE_DIM)).type(dtype) fake_images = test_g_gan.forward(fake_seed) fake_images.size() # Check the number of parameters in your generator as a sanity check: # In[84]: def test_dc_generator(true_count=6580801): model = build_dc_generator(4) cur_count = count_params(model) if cur_count != true_count: print('Incorrect number of parameters in generator. Check your achitecture.') else: print('Correct number of parameters in generator.') test_dc_generator() # In[85]: D_DC = build_dc_classifier().type(dtype) D_DC.apply(initialize_weights) G_DC = build_dc_generator().type(dtype) G_DC.apply(initialize_weights) D_DC_solver = get_optimizer(D_DC) G_DC_solver = get_optimizer(G_DC) run_a_gan(D_DC, G_DC, D_DC_solver, G_DC_solver, discriminator_loss, generator_loss, num_epochs=5) # # INLINE QUESTION 2 # What differences do you see between the DCGAN results and the original GAN results? # The digits look much smoother, less noisy. They look almost identical to the digits in the MNIST dataset. Using convolutional filters improved dramatically the performance of the network. # ## Extra Credit # ** Be sure you don't destroy your results above, but feel free to copy+paste code to get results below ** # * For a small amount of extra credit, you can implement additional new GAN loss functions below, provided they converge. See AFI, BiGAN, Softmax GAN, Conditional GAN, InfoGAN, etc. # * Likewise for an improved architecture or using a convolutional GAN (or even implement a VAE) # * For a bigger chunk of extra credit, load the CIFAR10 data (see last assignment) and train a compelling generative model on CIFAR-10 # * Something new/cool. # # #### Describe what you did here # ** TBD **