# conditional_image_generation_with_pixelcnn_decoders__69f5c5b9.pdf Conditional Image Generation with Pixel CNN Decoders Aäron van den Oord Google Deep Mind avdnoord@google.com Nal Kalchbrenner Google Deep Mind nalk@google.com Oriol Vinyals Google Deep Mind vinyals@google.com Lasse Espeholt Google Deep Mind espeholt@google.com Alex Graves Google Deep Mind gravesa@google.com Koray Kavukcuoglu Google Deep Mind korayk@google.com This work explores conditional image generation with a new image density model based on the Pixel CNN architecture. The model can be conditioned on any vector, including descriptive labels or tags, or latent embeddings created by other networks. When conditioned on class labels from the Image Net database, the model is able to generate diverse, realistic scenes representing distinct animals, objects, landscapes and structures. When conditioned on an embedding produced by a convolutional network given a single image of an unseen face, it generates a variety of new portraits of the same person with different facial expressions, poses and lighting conditions. We also show that conditional Pixel CNN can serve as a powerful decoder in an image autoencoder. Additionally, the gated convolutional layers in the proposed model improve the log-likelihood of Pixel CNN to match the state-ofthe-art performance of Pixel RNN on Image Net, with greatly reduced computational cost. 1 Introduction Recent advances in image modelling with neural networks [30, 26, 20, 10, 9, 28, 6] have made it feasible to generate diverse natural images that capture the high-level structure of the training data. While such unconditional models are fascinating in their own right, many of the practical applications of image modelling require the model to be conditioned on prior information: for example, an image model used for reinforcement learning planning in a visual environment would need to predict future scenes given specific states and actions [17]. Similarly image processing tasks such as denoising, deblurring, inpainting, super-resolution and colorization rely on generating improved images conditioned on noisy or incomplete data. Neural artwork [18, 5] and content generation represent potential future uses for conditional generation. This paper explores the potential for conditional image modelling by adapting and improving a convolutional variant of the Pixel RNN architecture [30]. As well as providing excellent samples, this network has the advantage of returning explicit probability densities (unlike alternatives such as generative adversarial networks [6, 3, 19]), making it straightforward to apply in domains such as compression [32] and probabilistic planning and exploration [2]. The basic idea of the architecture is to use autoregressive connections to model images pixel by pixel, decomposing the joint image distribution as a product of conditionals. Two variants were proposed in the original paper: Pixel RNN, where the pixel distributions are modeled with two-dimensional LSTM [7, 26], and Pixel CNN, where they are modelled with convolutional networks. Pixel RNNs generally give better performance, but Pixel CNNs are much faster to train because convolutions are inherently easier to parallelize; given 30th Conference on Neural Information Processing Systems (NIPS 2016), Barcelona, Spain. 0 255 1 1 1 1 1 Horizontal stack Vertical stack Figure 1: Left: A visualization of the Pixel CNN that maps a neighborhood of pixels to prediction for the next pixel. To generate pixel xi the model can only condition on the previously generated pixels x1, . . . xi 1. Middle: an example matrix that is used to mask the 5x5 filters to make sure the model cannot read pixels below (or strictly to the right) of the current pixel to make its predictions. Right: Top: Pixel CNNs have a blind spot in the receptive field that can not be used to make predictions. Bottom: Two convolutional stacks (blue and purple) allow to capture the whole receptive field. the vast number of pixels present in large image datasets this is an important advantage. We aim to combine the strengths of both models by introducing a gated variant of Pixel CNN (Gated Pixel CNN) that matches the log-likelihood of Pixel RNN on both CIFAR and Image Net, while requiring less than half the training time. We also introduce a conditional variant of the Gated Pixel CNN (Conditional Pixel CNN) that allows us to model the complex conditional distributions of natural images given a latent vector embedding. We show that a single Conditional Pixel CNN model can be used to generate images from diverse classes such as dogs, lawn mowers and coral reefs, by simply conditioning on a one-hot encoding of the class. Similarly one can use embeddings that capture high level information of an image to generate a large variety of images with similar features. This gives us insight into the invariances encoded in the embeddings e.g., we can generate different poses of the same person based on a single image. The same framework can also be used to analyse and interpret different layers and activations in deep neural networks. 2 Gated Pixel CNN Pixel CNNs (and Pixel RNNs) [30] model the joint distribution of pixels over an image x as the following product of conditional distributions, where xi is a single pixel: i=1 p(xi|x1, ..., xi 1). (1) The ordering of the pixel dependencies is in raster scan order: row by row and pixel by pixel within every row. Every pixel therefore depends on all the pixels above and to the left of it, and not on any of other pixels. The dependency field of a pixel is visualized in Figure 1 (left). A similar setup has been used by other autoregressive models such as NADE [14] and RIDE [26]. The difference lies in the way the conditional distributions p(xi|x1, ..., xi 1) are constructed. In Pixel CNN every conditional distribution is modelled by a convolutional neural network. To make sure the CNN can only use information about pixels above and to the left of the current pixel, the filters of the convolution are masked as shown in Figure 1 (middle). For each pixel the three colour channels (R, G, B) are modelled successively, with B conditioned on (R, G), and G conditioned on R. This is achieved by splitting the feature maps at every layer of the network into three and adjusting the centre values of the mask tensors. The 256 possible values for each colour channel are then modelled using a softmax. Pixel CNN typically consists of a stack of masked convolutional layers that takes an N x N x 3 image as input and produces N x N x 3 x 256 predictions as output. The use of convolutions allows the predictions for all the pixels to be made in parallel during training (all conditional distributions from Equation 1). During sampling the predictions are sequential: every time a pixel is predicted, it is fed back into the network to predict the next pixel. This sequentiality is essential to generating high quality images, as it allows every pixel to depend in a highly non-linear and multimodal way on the previous pixels. 2.1 Gated Convolutional Layers Pixel RNNs, which use spatial LSTM layers instead of convolutional stacks, have previously been shown to outperform Pixel CNNs as generative models [30]. One possible reason for the advantage is that the recurrent connections in LSTM allow every layer in the network to access the entire neighbourhood of previous pixels, while the region of the neighbourhood available to pixel CNN grows linearly with the depth of the convolutional stack. However this shortcoming can largely be alleviated by using sufficiently many layers. Another potential advantage is that Pixel RNNs contain multiplicative units (in the form of the LSTM gates), which may help it to model more complex interactions. To amend this we replaced the rectified linear units between the masked convolutions in the original pixel CNN with the following gated activation unit: y = tanh(Wk,f x) σ(Wk,g x), (2) where σ is the sigmoid non-linearity, k is the number of the layer, is the element-wise product and is the convolution operator. We call the resulting model the Gated Pixel CNN. Feed-forward neural networks with gates have been explored in previous works, such as highway networks [25], grid LSTM [13] and neural GPUs [12], and have generally proved beneficial to performance. 2.2 Blind spot in the receptive field In Figure 1 (top right), we show the progressive growth of the effective receptive field of a 3 3 masked filter over the input image. Note that a significant portion of the input image is ignored by the masked convolutional architecture. This blind spot can cover as much as a quarter of the potential receptive field (e.g., when using 3x3 filters), meaning that none of the content to the right of the current pixel would be taken into account. In this work, we remove the blind spot by combining two convolutional network stacks: one that conditions on the current row so far (horizontal stack) and one that conditions on all rows above (vertical stack). The arrangement is illustrated in Figure 1 (bottom right). The vertical stack, which does not have any masking, allows the receptive field to grow in a rectangular fashion without any blind spot, and we combine the outputs of the two stacks after each layer. Every layer in the horizontal stack takes as input the output of the previous layer as well as that of the vertical stack. If we had connected the output of the horizontal stack into the vertical stack, it would be able to use information about pixels that are below or to the right of the current pixel which would break the conditional distribution. Figure 2 shows a single layer block of a Gated Pixel CNN. We combine Wf and Wg in a single (masked) convolution to increase parallelization. As proposed in [30] we also use a residual connection [11] in the horizontal stack. We have experimented with adding a residual connection in the vertical stack, but omitted it from the final model as it did not improve the results in our initial experiments. Note that the (n 1) and (n n) masked convolutions in Figure 2 can also be implemented by ( n 2 1) and ( n 2 n) convolutions followed by a shift in pixels by padding and cropping. 2.3 Conditional Pixel CNN Given a high-level image description represented as a latent vector h, we seek to model the conditional distribution p(x|h) of images suiting this description. Formally the conditional Pixel CNN models the following distribution: i=1 p(xi|x1, ..., xi 1, h). (3) We model the conditional distribution by adding terms that depend on h to the activations before the nonlinearities in Equation 2, which now becomes: y = tanh(Wk,f x + V T k,fh) σ(Wk,g x + V T k,gh), (4) p Split feature maps p = #feature maps Figure 2: A single layer in the Gated Pixel CNN architecture. Convolution operations are shown in green, element-wise multiplications and additions are shown in red. The convolutions with Wf and Wg from Equation 2 are combined into a single operation shown in blue, which splits the 2p features maps into two groups of p. where k is the layer number. If h is a one-hot encoding that specifies a class this is equivalent to adding a class dependent bias at every layer. Notice that the conditioning does not depend on the location of the pixel in the image; this is appropriate as long as h only contains information about what should be in the image and not where. For example we could specify that a certain animal or object should appear, but may do so in different positions and poses and with different backgrounds. We also developed a variant where the conditioning function was location dependent. This could be useful for applications where we do have information about the location of certain structures in the image embedded in h. By mapping h to a spatial representation s = m (h) (which has the same width and height as the image but may have an arbitrary number of feature maps) with a deconvolutional neural network m(), we obtain a location dependent bias as follows: y = tanh(Wk,f x + Vk,f s) σ(Wk,g x + Vk,g s). (5) where Vk,g s is an unmasked 1 1 convolution. 2.4 Pixel CNN Auto-Encoders Because conditional Pixel CNNs have the capacity to model diverse, multimodal image distributions p(x|h), it is possible to apply them as image decoders in existing neural architectures such as autoencoders. An auto-encoder consists of two parts: an encoder that takes an input image x and maps it to a (usually) low-dimensional representation h, and a decoder that tries to reconstruct the original image. Starting with a traditional convolutional auto-encoder architecture [16], we replace the deconvolutional decoder with a conditional Pixel CNN and train the complete network end-to-end. Since Pixel CNN has proved to be a strong unconditional generative model, we would expect this change to improve the reconstructions. Perhaps more interestingly, we also expect it to change the representations that the encoder will learn to extract from the data: since so much of the low level pixel statistics can be handled by the Pixel CNN, the encoder should be able to omit these from h and concentrate instead on more high-level abstract information. 3 Experiments 3.1 Unconditional Modeling with Gated Pixel CNN Table 1 compares Gated Pixel CNN with published results on the CIFAR-10 dataset. These architectures were all optimized for the best possible validation score, meaning that models that get a lower score actually generalize better. Gated Pixel CNN outperforms the Pixel CNN by 0.11 bits/dim, which has a very significant effect on the visual quality of the samples produced, and which is close to the performance of Pixel RNN. Model NLL Test (Train) Uniform Distribution: [30] 8.00 Multivariate Gaussian: [30] 4.70 NICE: [4] 4.48 Deep Diffusion: [24] 4.20 DRAW: [9] 4.13 Deep GMMs: [31, 29] 4.00 Conv DRAW: [8] 3.58 (3.57) RIDE: [26, 30] 3.47 Pixel CNN: [30] 3.14 (3.08) Pixel RNN: [30] 3.00 (2.93) Gated Pixel CNN: 3.03 (2.90) Table 1: Test set performance of different models on CIFAR-10 in bits/dim (lower is better), training performance in brackets. In Table 2 we compare the performance of Gated Pixel CNN with other models on the Image Net dataset. Here Gated Pixel CNN outperforms Pixel RNN; we believe this is because the models are underfitting, larger models perform better and the simpler Pixel CNN model scales better. We were able to achieve similar performance to the Pixel RNN (Row LSTM [30]) in less than half the training time (60 hours using 32 GPUs). For the results in Table 2 we trained a larger model with 20 layers (Figure 2), each having 384 hidden units and filter size of 5 5. We used 200K synchronous updates over 32 GPUs in Tensor Flow [1] using a total batch size of 128. 32x32 Model NLL Test (Train) Conv Draw: [8] 4.40 (4.35) Pixel RNN: [30] 3.86 (3.83) Gated Pixel CNN: 3.83 (3.77) 64x64 Model NLL Test (Train) Conv Draw: [8] 4.10 (4.04) Pixel RNN: [30] 3.63 (3.57) Gated Pixel CNN: 3.57 (3.48) Table 2: Performance of different models on Image Net in bits/dim (lower is better), training performance in brackets. 3.2 Conditioning on Image Net Classes For our second experiment we explore class-conditional modelling of Image Net images using Gated Pixel CNNs. Given a one-hot encoding hi for the i-th class we model p(x|hi). The amount of information that the model receives is only log(1000) 0.003 bits/pixel (for a 32x32 image). Still, one could expect that conditioning the image generation on class label could significantly improve the log-likelihood results, however we did not observe big differences. On the other hand, as noted in [27], we observed great improvements in the visual quality of the generated samples. In Figure 3 we show samples from a single class-conditional model for 8 different classes. We see that the generated classes are very distinct from one another, and that the corresponding objects, animals and backgrounds are clearly produced. Furthermore the images of a single class are very diverse: for example the model was able to generate similar scenes from different angles and lightning conditions. It is encouraging to see that given roughly 1000 images from every animal or object the model is able to generalize and produce new renderings. 3.3 Conditioning on Portrait Embeddings In our next experiment we took the latent representations from the top layer of a convolutional network trained on a large database of portraits automatically cropped from Flickr images using a face detector. The quality of images varied wildly, because a lot of the pictures were taken with mobile phones in bad lightning conditions. The network was trained with a triplet loss function [23] that ensured that the embedding h produced for an image x of a specific person was closer to the embeddings for all other images of the same person than it was to any embedding of another person. After the supervised net was trained we took the (image=x, embedding=h) tuples and trained the Conditional Pixel CNN to model p(x|h). Given a new image of a person that was not in the training set we can compute h = f(x) and generate new portraits of the same person. Samples from the model are shown in Figure 4. We can see that the embeddings capture a lot of the facial features of the source image and the generative model is able to produce a large variety of new faces with these features in new poses, lighting conditions, etc. Finally, we experimented with reconstructions conditioned on linear interpolations between embeddings of pairs of images. The results are shown in Figure 5. Every image in a single row used the same random seed in the sampling which results in smooth transitions. The leftmost and rightmost images are used to produce the end points of interpolation. 3.4 Pixel CNN Auto Encoder This experiment explores the possibility of training both the encoder and decoder (Pixel CNN) endto-end as an auto-encoder. We trained a Pixel CNN auto-encoder on 32x32 Image Net patches and compared the results with those from a convolutional auto-encoder trained to optimize MSE. Both models used a 10 or 100 dimensional bottleneck. Figure 6 shows the reconstructions from both models. For the Pixel CNN we sample multiple conditional reconstructions. These images support our prediction in Section 2.4 that the information encoded in the bottleneck representation h will be qualitatively different with a Pixel CNN decoder than with a more conventional decoder. For example, in the lowest row we can see that the model generates different but similar looking indoor scenes with people, instead of trying to exactly reconstruct the input. 4 Conclusion This work introduced the Gated Pixel CNN, an improvement over the original Pixel CNN that is able to match or outperform Pixel RNN [30], and is computationally more efficient. In our new architecture, we use two stacks of CNNs to deal with blind spots in the receptive field, which limited the original Pixel CNN. Additionally, we use a gating mechanism which improves performance and convergence speed. We have shown that the architecture gets similar performance to Pixel RNN on CIFAR-10 and is now state-of-the-art on the Image Net 32x32 and 64x64 datasets. Furthermore, using the Conditional Pixel CNN we explored the conditional modelling of natural images in three different settings. In class-conditional generation we showed that a single model is able to generate diverse and realistic looking images corresponding to different classes. On human portraits the model is capable of generating new images from the same person in different poses and lightning conditions from a single image. Finally, we demonstrated that the Pixel CNN can be used as a powerful image decoder in an autoencoder. In addition to achieving state of the art log-likelihood scores in all these datasets, the samples generated from our model are of very high visual quality showing that the model captures natural variations of objects and lighting conditions. In the future it might be interesting to try and generate new images with a certain animal or object solely from a single example image [21, 22]. Another exciting direction would be to combine Conditional Pixel CNNs with variational inference to create a variational auto-encoder. In existing work p(x|h) is typically modelled with a Gaussian with diagonal covariance and using a Pixel CNN instead could thus improve the decoder in VAEs. Another promising direction of this work would be to model images based on an image caption instead of class label [15, 19]. African elephant Sorrel horse Lhasa Apso (dog) Robin (bird) Figure 3: Class-Conditional samples from the Conditional Pixel CNN. Figure 4: Left: source image. Right: new portraits generated from high-level latent representation. Figure 5: Linear interpolations in the embedding space decoded by the Pixel CNN. Embeddings from leftmost and rightmost images are used for endpoints of the interpolation. Figure 6: Left to right: original image, reconstruction by an auto-encoder trained with MSE, conditional samples from a Pixel CNN auto-encoder. Both auto-encoders were trained end-to-end with a m = 10-dimensional bottleneck and a m = 100 dimensional bottleneck. [1] Martın Abadi, Ashish Agarwal, Paul Barham, Eugene Brevdo, Zhifeng Chen, Craig Citro, Greg S Corrado, Andy Davis, Jeffrey Dean, Matthieu Devin, et al. Tensorflow: Large-scale machine learning on heterogeneous distributed systems. ar Xiv preprint ar Xiv:1603.04467, 2016. [2] Marc G Bellemare, Sriram Srinivasan, Georg Ostrovski, Tom Schaul, David Saxton, and Remi Munos. Unifying count-based exploration and intrinsic motivation. ar Xiv preprint ar Xiv:1606.01868, 2016. [3] Emily L Denton, Soumith Chintala, Rob Fergus, et al. Deep generative image models using a laplacian pyramid of adversarial networks. In Advances in Neural Information Processing Systems, pages 1486 1494, 2015. [4] Laurent Dinh, David Krueger, and Yoshua Bengio. NICE: Non-linear independent components estimation. ar Xiv preprint ar Xiv:1410.8516, 2014. [5] Leon A Gatys, Alexander S Ecker, and Matthias Bethge. A neural algorithm of artistic style. ar Xiv preprint ar Xiv:1508.06576, 2015. [6] Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in Neural Information Processing Systems, pages 2672 2680, 2014. [7] Alex Graves and Jürgen Schmidhuber. Offline handwriting recognition with multidimensional recurrent neural networks. In Advances in Neural Information Processing Systems, 2009. [8] Karol Gregor, Frederic Besse, Danilo J Rezende, Ivo Danihelka, and Daan Wierstra. Towards conceptual compression. ar Xiv preprint ar Xiv:1601.06759, 2016. [9] Karol Gregor, Ivo Danihelka, Alex Graves, and Daan Wierstra. DRAW: A recurrent neural network for image generation. Proceedings of the 32nd International Conference on Machine Learning, 2015. [10] Karol Gregor, Ivo Danihelka, Andriy Mnih, Charles Blundell, and Daan Wierstra. Deep autoregressive networks. In Proceedings of the 31st International Conference on Machine Learning, 2014. [11] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. ar Xiv preprint ar Xiv:1512.03385, 2015. [12] Łukasz Kaiser and Ilya Sutskever. Neural gpus learn algorithms. ar Xiv preprint ar Xiv:1511.08228, 2015. [13] Nal Kalchbrenner, Ivo Danihelka, and Alex Graves. Grid long short-term memory. ar Xiv preprint ar Xiv:1507.01526, 2015. [14] Hugo Larochelle and Iain Murray. The neural autoregressive distribution estimator. The Journal of Machine Learning Research, 2011. [15] Elman Mansimov, Emilio Parisotto, Jimmy Lei Ba, and Ruslan Salakhutdinov. Generating images from captions with attention. ar Xiv preprint ar Xiv:1511.02793, 2015. [16] Jonathan Masci, Ueli Meier, Dan Cire san, and Jürgen Schmidhuber. Stacked convolutional auto-encoders for hierarchical feature extraction. In Artificial Neural Networks and Machine Learning ICANN 2011, pages 52 59. Springer, 2011. [17] Junhyuk Oh, Xiaoxiao Guo, Honglak Lee, Richard L Lewis, and Satinder Singh. Action-conditional video prediction using deep networks in atari games. In Advances in Neural Information Processing Systems, pages 2845 2853, 2015. [18] Christopher Olah and Mike Tyka. Inceptionism: Going deeper into neural networks. 2015. [19] Scott Reed, Zeynep Akata, Xinchen Yan, Lajanugen Logeswaran, Bernt Schiele, and Honglak Lee. Generative adversarial text to image synthesis. ar Xiv preprint ar Xiv:1605.05396, 2016. [20] Danilo J Rezende, Shakir Mohamed, and Daan Wierstra. Stochastic backpropagation and approximate inference in deep generative models. In Proceedings of the 31st International Conference on Machine Learning, 2014. [21] Danilo Jimenez Rezende, Shakir Mohamed, Ivo Danihelka, Karol Gregor, and Daan Wierstra. One-shot generalization in deep generative models. ar Xiv preprint ar Xiv:1603.05106, 2016. [22] Ruslan Salakhutdinov, Joshua B Tenenbaum, and Antonio Torralba. Learning with hierarchical-deep models. Pattern Analysis and Machine Intelligence, IEEE Transactions on, 35(8):1958 1971, 2013. [23] Florian Schroff, Dmitry Kalenichenko, and James Philbin. Facenet: A unified embedding for face recognition and clustering. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 815 823, 2015. [24] Jascha Sohl-Dickstein, Eric A. Weiss, Niru Maheswaranathan, and Surya Ganguli. Deep unsupervised learning using nonequilibrium thermodynamics. Proceedings of the 32nd International Conference on Machine Learning, 2015. [25] Rupesh K Srivastava, Klaus Greff, and Jürgen Schmidhuber. Training very deep networks. In Advances in Neural Information Processing Systems, pages 2368 2376, 2015. [26] Lucas Theis and Matthias Bethge. Generative image modeling using spatial LSTMs. In Advances in Neural Information Processing Systems, 2015. [27] Lucas Theis, Aaron van den Oord, and Matthias Bethge. A note on the evaluation of generative models. ar Xiv preprint ar Xiv:1511.01844, 2015. [28] Benigno Uria, Marc-Alexandre Côté, Karol Gregor, Iain Murray, and Hugo Larochelle. Neural autoregressive distribution estimation. ar Xiv preprint ar Xiv:1605.02226, 2016. [29] Aaron van den Oord and Joni Dambre. Locally-connected transformations for deep gmms. In International Conference on Machine Learning (ICML) : Deep learning Workshop, Abstracts, pages 1 8, 2015. [30] Aaron van den Oord, Nal Kalchbrenner, and Koray Kavukcuoglu. Pixel recurrent neural networks. ar Xiv preprint ar Xiv:1601.06759, 2016. [31] Aäron van den Oord and Benjamin Schrauwen. Factoring variations in natural images with deep gaussian mixture models. In Advances in Neural Information Processing Systems, 2014. [32] Aaron van den Oord and Benjamin Schrauwen. The student-t mixture as a natural image patch prior with application to image compression. The Journal of Machine Learning Research, 2014.