Generative Adversarial Networks/paper/en

    From Marovi AI
    Other languages:
    SummarySource
    Research Paper
    Authors Ian J. Goodfellow; Jean Pouget-Abadie; Mehdi Mirza; Bing Xu; David Warde-Farley; Sherjil Ozair; Aaron Courville; Yoshua Bengio
    Year 2014
    Topic area Machine Learning
    Difficulty Research
    arXiv 1406.2661
    PDF Download PDF

    Generative Adversarial Nets

    Ian J. Goodfellow,    Jean Pouget-Abadie,   Mehdi Mirza,   Bing Xu,  David Warde-Farley,
    Sherjil Ozair,  Aaron Courville,  Yoshua Bengio
    Département d’informatique et de recherche opérationnelle
    Université de Montréal
    Montréal, QC H3C 3J7
    Jean Pouget-Abadie is visiting Université de Montréal from Ecole Polytechnique. Sherjil Ozair is visiting Université de Montréal from Indian Institute of Technology DelhiYoshua Bengio is a CIFAR Senior Fellow.

    Abstract

    We propose a new framework for estimating generative models via an adversarial process, in which we simultaneously train two models: a generative model $ {\textstyle G} $ that captures the data distribution, and a discriminative model $ {\textstyle D} $ that estimates the probability that a sample came from the training data rather than $ {\textstyle G} $. The training procedure for $ {\textstyle G} $ is to maximize the probability of $ {\textstyle D} $ making a mistake. This framework corresponds to a minimax two-player game. In the space of arbitrary functions $ {\textstyle G} $ and $ {\textstyle D} $, a unique solution exists, with $ {\textstyle G} $ recovering the training data distribution and $ {\textstyle D} $ equal to $ {\textstyle \frac{1}{2}} $ everywhere. In the case where $ {\textstyle G} $ and $ {\textstyle D} $ are defined by multilayer perceptrons, the entire system can be trained with backpropagation. There is no need for any Markov chains or unrolled approximate inference networks during either training or generation of samples. Experiments demonstrate the potential of the framework through qualitative and quantitative evaluation of the generated samples.

    1 Introduction

    The promise of deep learning is to discover rich, hierarchical models [2] that represent probability distributions over the kinds of data encountered in artificial intelligence applications, such as natural images, audio waveforms containing speech, and symbols in natural language corpora. So far, the most striking successes in deep learning have involved discriminative models, usually those that map a high-dimensional, rich sensory input to a class label [14, 22]. These striking successes have primarily been based on the backpropagation and dropout algorithms, using piecewise linear units  [19, 9, 10] which have a particularly well-behaved gradient . Deep generative models have had less of an impact, due to the difficulty of approximating many intractable probabilistic computations that arise in maximum likelihood estimation and related strategies, and due to difficulty of leveraging the benefits of piecewise linear units in the generative context. We propose a new generative model estimation procedure that sidesteps these difficulties. 111All code and hyperparameters available at http://www.github.com/goodfeli/adversarial

    In the proposed adversarial nets framework, the generative model is pitted against an adversary: a discriminative model that learns to determine whether a sample is from the model distribution or the data distribution. The generative model can be thought of as analogous to a team of counterfeiters, trying to produce fake currency and use it without detection, while the discriminative model is analogous to the police, trying to detect the counterfeit currency. Competition in this game drives both teams to improve their methods until the counterfeits are indistiguishable from the genuine articles.

    This framework can yield specific training algorithms for many kinds of model and optimization algorithm. In this article, we explore the special case when the generative model generates samples by passing random noise through a multilayer perceptron, and the discriminative model is also a multilayer perceptron. We refer to this special case as adversarial nets. In this case, we can train both models using only the highly successful backpropagation and dropout algorithms [17] and sample from the generative model using only forward propagation. No approximate inference or Markov chains are necessary.

    2 Related work

    An alternative to directed graphical models with latent variables are undirected graphical models with latent variables, such as restricted Boltzmann machines (RBMs) [27, 16], deep Boltzmann machines (DBMs) [26] and their numerous variants. The interactions within such models are represented as the product of unnormalized potential functions, normalized by a global summation/integration over all states of the random variables. This quantity (the partition function) and its gradient are intractable for all but the most trivial instances, although they can be estimated by Markov chain Monte Carlo (MCMC) methods. Mixing poses a significant problem for learning algorithms that rely on MCMC [3, 5].

    Deep belief networks (DBNs) [16] are hybrid models containing a single undirected layer and several directed layers. While a fast approximate layer-wise training criterion exists, DBNs incur the computational difficulties associated with both undirected and directed models.

    Alternative criteria that do not approximate or bound the log-likelihood have also been proposed, such as score matching [18] and noise-contrastive estimation (NCE) [13]. Both of these require the learned probability density to be analytically specified up to a normalization constant. Note that in many interesting generative models with several layers of latent variables (such as DBNs and DBMs), it is not even possible to derive a tractable unnormalized probability density. Some models such as denoising auto-encoders [30] and contractive autoencoders have learning rules very similar to score matching applied to RBMs. In NCE, as in this work, a discriminative training criterion is employed to fit a generative model. However, rather than fitting a separate discriminative model, the generative model itself is used to discriminate generated data from samples a fixed noise distribution. Because NCE uses a fixed noise distribution, learning slows dramatically after the model has learned even an approximately correct distribution over a small subset of the observed variables.

    Finally, some techniques do not involve defining a probability distribution explicitly, but rather train a generative machine to draw samples from the desired distribution. This approach has the advantage that such machines can be designed to be trained by back-propagation. Prominent recent work in this area includes the generative stochastic network (GSN) framework [5], which extends generalized denoising auto-encoders [4]: both can be seen as defining a parameterized Markov chain, i.e., one learns the parameters of a machine that performs one step of a generative Markov chain. Compared to GSNs, the adversarial nets framework does not require a Markov chain for sampling. Because adversarial nets do not require feedback loops during generation, they are better able to leverage piecewise linear units [19, 9, 10], which improve the performance of backpropagation but have problems with unbounded activation when used ina feedback loop. More recent examples of training a generative machine by back-propagating into it include recent work on auto-encoding variational Bayes [20] and stochastic backpropagation [24].

    3 Adversarial nets

    The adversarial modeling framework is most straightforward to apply when the models are both multilayer perceptrons. To learn the generator’s distribution $ {\textstyle p_{g}} $ over data $ {\textstyle \mathbf{x}} $, we define a prior on input noise variables $ {\textstyle p_{\mathbf{z}}\hspace{0pt}{({\mathbf{z}})}} $, then represent a mapping to data space as $ {\textstyle G\hspace{0pt}{({\mathbf{z}};\theta_{g})}} $, where $ {\textstyle G} $ is a differentiable function represented by a multilayer perceptron with parameters $ {\textstyle \theta_{g}} $. We also define a second multilayer perceptron $ {\textstyle D\hspace{0pt}{({\mathbf{x}};\theta_{d})}} $ that outputs a single scalar. $ {\textstyle D\hspace{0pt}{({\mathbf{x}})}} $ represents the probability that $ {\textstyle \mathbf{x}} $ came from the data rather than $ {\textstyle p_{g}} $. We train $ {\textstyle D} $ to maximize the probability of assigning the correct label to both training examples and samples from $ {\textstyle G} $. We simultaneously train $ {\textstyle G} $ to minimize $ {\textstyle \log{({1 - {D\hspace{0pt}{({G\hspace{0pt}{({\mathbf{z}})}})}}})}} $:

    In other words, $ {\textstyle D} $ and $ {\textstyle G} $ play the following two-player minimax game with value function $ {\textstyle V\hspace{0pt}{(G,D)}} $:

    $ {\displaystyle {{{\min\limits_{G}{\max\limits_{D}V}}\hspace{0pt}{(D,G)}} = {{{\mathbb{E}}_{{\mathbf{x}} \sim {p_{\text{data}}\hspace{0pt}{({\mathbf{x}})}}}\hspace{0pt}{\lbrack{{\log D}\hspace{0pt}{({\mathbf{x}})}}\rbrack}} + {{\mathbb{E}}_{{\mathbf{z}} \sim {p_{\mathbf{z}}\hspace{0pt}{({\mathbf{z}})}}}\hspace{0pt}{\lbrack{\log{({1 - {D\hspace{0pt}{({G\hspace{0pt}{({\mathbf{z}})}})}}})}}\rbrack}}}}.} $ (1)

    In the next section, we present a theoretical analysis of adversarial nets, essentially showing that the training criterion allows one to recover the data generating distribution as $ {\textstyle G} $ and $ {\textstyle D} $ are given enough capacity, i.e., in the non-parametric limit. See Figure 1 for a less formal, more pedagogical explanation of the approach. In practice, we must implement the game using an iterative, numerical approach. Optimizing $ {\textstyle D} $ to completion in the inner loop of training is computationally prohibitive, and on finite datasets would result in overfitting. Instead, we alternate between $ {\textstyle k} $ steps of optimizing $ {\textstyle D} $ and one step of optimizing $ {\textstyle G} $. This results in $ {\textstyle D} $ being maintained near its optimal solution, so long as $ {\textstyle G} $ changes slowly enough. This strategy is analogous to the way that SML/PCD [31, 29] training maintains samples from a Markov chain from one learning step to the next in order to avoid burning in a Markov chain as part of the inner loop of learning. The procedure is formally presented in Algorithm 1.

    In practice, equation 1 may not provide sufficient gradient for $ {\textstyle G} $ to learn well. Early in learning, when $ {\textstyle G} $ is poor, $ {\textstyle D} $ can reject samples with high confidence because they are clearly different from the training data. In this case, $ {\textstyle \log{({1 - {D\hspace{0pt}{({G\hspace{0pt}{({\mathbf{z}})}})}}})}} $ saturates. Rather than training $ {\textstyle G} $ to minimize $ {\textstyle \log{({1 - {D\hspace{0pt}{({G\hspace{0pt}{({\mathbf{z}})}})}}})}} $ we can train $ {\textstyle G} $ to maximize $ {\textstyle {\log D}\hspace{0pt}{({G\hspace{0pt}{({\mathbf{z}})}})}} $. This objective function results in the same fixed point of the dynamics of $ {\textstyle G} $ and $ {\textstyle D} $ but provides much stronger gradients early in learning.

    Refer to caption Refer to caption Refer to caption Refer to caption
    (a) (b) (c) (d)

      for number of training iterations do      for $ {\textstyle k} $ steps do         $ {\textstyle \bullet} $ Sample minibatch of $ {\textstyle m} $ noise samples $ {\textstyle \{{\mathbf{z}}^{(1)},\ldots,{\mathbf{z}}^{(m)}\}} $ from noise prior $ {\textstyle p_{g}\hspace{0pt}{({\mathbf{z}})}} $.         $ {\textstyle \bullet} $ Sample minibatch of $ {\textstyle m} $ examples $ {\textstyle \{{\mathbf{x}}^{(1)},\ldots,{\mathbf{x}}^{(m)}\}} $ from data generating distribution $ {\textstyle p_{\text{data}}\hspace{0pt}{({\mathbf{x}})}} $.         $ {\textstyle \bullet} $ Update the discriminator by ascending its stochastic gradient:

    $ {\displaystyle {{\nabla_{\theta_{d}}\frac{1}{m}}\hspace{0pt}{\sum\limits_{i = 1}^{m}\left\lbrack {{{\log D}\hspace{0pt}\left( {\mathbf{x}}^{(i)} \right)} + {\log\left( {1 - {D\hspace{0pt}\left( {G\hspace{0pt}\left( {\mathbf{z}}^{(i)} \right)} \right)}} \right)}} \right\rbrack}}.} $

         end for      $ {\textstyle \bullet} $ Sample minibatch of $ {\textstyle m} $ noise samples $ {\textstyle \{{\mathbf{z}}^{(1)},\ldots,{\mathbf{z}}^{(m)}\}} $ from noise prior $ {\textstyle p_{g}\hspace{0pt}{({\mathbf{z}})}} $.      $ {\textstyle \bullet} $ Update the generator by descending its stochastic gradient:

    $ {\displaystyle {{\nabla_{\theta_{g}}\frac{1}{m}}\hspace{0pt}{\sum\limits_{i = 1}^{m}{\log\left( {1 - {D\hspace{0pt}\left( {G\hspace{0pt}\left( {\mathbf{z}}^{(i)} \right)} \right)}} \right)}}}.} $

      end forThe gradient-based updates can use any standard gradient-based learning rule. We used momentum in our experiments.

    4 Theoretical Results

    The generator $ {\textstyle G} $ implicitly defines a probability distribution $ {\textstyle p_{g}} $ as the distribution of the samples $ {\textstyle G\hspace{0pt}{({\mathbf{z}})}} $ obtained when $ {\textstyle {\mathbf{z}} \sim p_{\mathbf{z}}} $. Therefore, we would like Algorithm 1 to converge to a good estimator of $ {\textstyle p_{\text{data}}} $, if given enough capacity and training time. The results of this section are done in a non-parametric setting, e.g. we represent a model with infinite capacity by studying convergence in the space of probability density functions.

    We will show in section 4.1 that this minimax game has a global optimum for $ {\textstyle p_{g} = p_{\text{data}}} $. We will then show in section 4.2 that Algorithm 1 optimizes Eq 1, thus obtaining the desired result.

    4.1 Global Optimality of p_{g} = p_{\text{data}}

    We first consider the optimal discriminator $ {\textstyle D} $ for any given generator $ {\textstyle G} $.

    Proposition 1.

    For $ {\textstyle G} $ fixed, the optimal discriminator $ {\textstyle D} $ is

    $ {\displaystyle {D_{G}^{\ast}\hspace{0pt}{({\mathbf{x}})}} = \frac{p_{\text{data}}\hspace{0pt}{({\mathbf{x}})}}{{p_{\text{data}}\hspace{0pt}{({\mathbf{x}})}} + {p_{g}\hspace{0pt}{({\mathbf{x}})}}}} $ (2)

    Proof.

    The training criterion for the discriminator D, given any generator $ {\textstyle G} $, is to maximize the quantity $ {\textstyle V\hspace{0pt}{(G,D)}} $

    $ {\textstyle {V\hspace{0pt}{(G,D)}} =} $ $ {\textstyle {\int_{\mathbf{x}}{p_{\text{data}}\hspace{0pt}{({\mathbf{x}})}\hspace{0pt}{\log{({D\hspace{0pt}{({\mathbf{x}})}})}}\hspace{0pt}{dx}}} + {\int_{z}{p_{\mathbf{z}}\hspace{0pt}{({\mathbf{z}})}\hspace{0pt}{\log{({1 - {D\hspace{0pt}{({g\hspace{0pt}{({\mathbf{z}})}})}}})}}\hspace{0pt}{dz}}}} $
    $ {\textstyle =} $ $ {\textstyle {\int_{\mathbf{x}}{p_{\text{data}}\hspace{0pt}{({\mathbf{x}})}\hspace{0pt}{\log{({D\hspace{0pt}{({\mathbf{x}})}})}}}} + {p_{g}\hspace{0pt}{({\mathbf{x}})}\hspace{0pt}{\log{({1 - {D\hspace{0pt}{({\mathbf{x}})}}})}}\hspace{0pt}d\hspace{0pt}x}} $ (3)

    For any $ {\textstyle {(a,b)} \in {{\mathbb{R}}^{2} \smallsetminus {\{ 0,0\}}}} $, the function $ {\textstyle y\rightarrow{{a\hspace{0pt}{\log{(y)}}} + {b\hspace{0pt}{\log{({1 - y})}}}}} $ achieves its maximum in $ {\textstyle \lbrack 0,1\rbrack} $ at $ {\textstyle \frac{a}{a + b}} $. The discriminator does not need to be defined outside of $ {\textstyle {S\hspace{0pt}u\hspace{0pt}p\hspace{0pt}p\hspace{0pt}{(p_{\text{data}})}} \cup {S\hspace{0pt}u\hspace{0pt}p\hspace{0pt}p\hspace{0pt}{(p_{g})}}} $, concluding the proof. ∎

    Note that the training objective for $ {\textstyle D} $ can be interpreted as maximizing the log-likelihood for estimating the conditional probability $ {\textstyle P\hspace{0pt}{({Y = \left. y \middle| {\mathbf{x}} \right.})}} $, where $ {\textstyle Y} $ indicates whether $ {\textstyle \mathbf{x}} $ comes from $ {\textstyle p_{\text{data}}} $ (with $ {\textstyle y = 1} $) or from $ {\textstyle p_{g}} $ (with $ {\textstyle y = 0} $). The minimax game in Eq. 1 can now be reformulated as:

    $ {\textstyle {C\hspace{0pt}{(G)}} =} $ $ {\textstyle {\max\limits_{D}V}\hspace{0pt}{(G,D)}} $
    $ {\textstyle =} $ $ {\textstyle {{\mathbb{E}}_{{\mathbf{x}} \sim p_{\text{data}}}\hspace{0pt}{\lbrack{{\log D_{G}^{\ast}}\hspace{0pt}{({\mathbf{x}})}}\rbrack}} + {{\mathbb{E}}_{{\mathbf{z}} \sim p_{\mathbf{z}}}\hspace{0pt}{\lbrack{\log{({1 - {D_{G}^{\ast}\hspace{0pt}{({G\hspace{0pt}{({\mathbf{z}})}})}}})}}\rbrack}}} $ (4)
    $ {\textstyle =} $ $ {\textstyle {{\mathbb{E}}_{{\mathbf{x}} \sim p_{\text{data}}}\hspace{0pt}{\lbrack{{\log D_{G}^{\ast}}\hspace{0pt}{({\mathbf{x}})}}\rbrack}} + {{\mathbb{E}}_{{\mathbf{x}} \sim p_{g}}\hspace{0pt}{\lbrack{\log{({1 - {D_{G}^{\ast}\hspace{0pt}{({\mathbf{x}})}}})}}\rbrack}}} $
    $ {\textstyle =} $ $ {\textstyle {{\mathbb{E}}_{{\mathbf{x}} \sim p_{\text{data}}}\hspace{0pt}\left\lbrack {\log\frac{p_{\text{data}}\hspace{0pt}{({\mathbf{x}})}}{{P_{\text{data}}\hspace{0pt}{({\mathbf{x}})}} + {p_{g}\hspace{0pt}{({\mathbf{x}})}}}} \right\rbrack} + {{\mathbb{E}}_{{\mathbf{x}} \sim p_{g}}\hspace{0pt}\left\lbrack {\log\frac{p_{g}\hspace{0pt}{({\mathbf{x}})}}{{p_{\text{data}}\hspace{0pt}{({\mathbf{x}})}} + {p_{g}\hspace{0pt}{({\mathbf{x}})}}}} \right\rbrack}} $

    Theorem 1.

    The global minimum of the virtual training criterion $ {\textstyle C\hspace{0pt}{(G)}} $ is achieved if and only if $ {\textstyle p_{g} = p_{\text{data}}} $. At that point, $ {\textstyle C\hspace{0pt}{(G)}} $ achieves the value $ {\textstyle - {\log 4}} $.

    Proof.

    For $ {\textstyle p_{g} = p_{\text{data}}} $, $ {\textstyle {D_{G}^{\ast}\hspace{0pt}{({\mathbf{x}})}} = \frac{1}{2}} $, (consider Eq. 2). Hence, by inspecting Eq. 4.1 at $ {\textstyle {D_{G}^{\ast}\hspace{0pt}{({\mathbf{x}})}} = \frac{1}{2}} $, we find $ {\textstyle {C\hspace{0pt}{(G)}} = {{\log\frac{1}{2}} + {\log\frac{1}{2}}} = {- {\log 4}}} $. To see that this is the best possible value of $ {\textstyle C\hspace{0pt}{(G)}} $, reached only for $ {\textstyle p_{g} = p_{\text{data}}} $, observe that

    $ {\displaystyle {{{\mathbb{E}}_{{\mathbf{x}} \sim p_{\text{data}}}\hspace{0pt}\left\lbrack {- {\log 2}} \right\rbrack} + {{\mathbb{E}}_{{\mathbf{x}} \sim p_{g}}\hspace{0pt}\left\lbrack {- {\log 2}} \right\rbrack}} = {- {\log 4}}} $

    and that by subtracting this expression from $ {\textstyle {C\hspace{0pt}{(G)}} = {V\hspace{0pt}{(D_{G}^{\ast},G)}}} $, we obtain:

    $ {\displaystyle {C\hspace{0pt}{(G)}} = {{- {\log{(4)}}} + {K\hspace{0pt}L\hspace{0pt}\left( p_{\text{data}}\parallel\frac{p_{\text{data}} + p_{g}}{2} \right)} + {K\hspace{0pt}L\hspace{0pt}\left( p_{g}\parallel\frac{p_{\text{data}} + p_{g}}{2} \right)}}} $ (5)

    where KL is the Kullback–Leibler divergence. We recognize in the previous expression the Jensen–Shannon divergence between the model’s distribution and the data generating process:

    $ {\displaystyle {C\hspace{0pt}{(G)}} = {{- {\log{(4)}}} + {{2 \cdot J}\hspace{0pt}S\hspace{0pt}D\hspace{0pt}\left( p_{\text{data}}\parallel p_{g} \right)}}} $ (6)

    Since the Jensen–Shannon divergence between two distributions is always non-negative and zero only when they are equal, we have shown that $ {\textstyle C^{\ast} = {- {\log{(4)}}}} $ is the global minimum of $ {\textstyle C\hspace{0pt}{(G)}} $ and that the only solution is $ {\textstyle p_{g} = p_{\text{data}}} $, i.e., the generative model perfectly replicating the data generating process. ∎

    <span id="convergence-of-algorithm-1">

    4.2 convergence of Algorithm 1

    Proposition 2.

    If $ {\textstyle G} $ and $ {\textstyle D} $ have enough capacity, and at each step of Algorithm 1, the discriminator is allowed to reach its optimum given $ {\textstyle G} $, and $ {\textstyle p_{g}} $ is updated so as to improve the criterion

    $ {\displaystyle {{\mathbb{E}}_{{\mathbf{x}} \sim p_{\text{data}}}\hspace{0pt}{\lbrack{{\log D_{G}^{\ast}}\hspace{0pt}{({\mathbf{x}})}}\rbrack}} + {{\mathbb{E}}_{{\mathbf{x}} \sim p_{g}}\hspace{0pt}{\lbrack{\log{({1 - {D_{G}^{\ast}\hspace{0pt}{({\mathbf{x}})}}})}}\rbrack}}} $

    then $ {\textstyle p_{g}} $ converges to $ {\textstyle p_{\text{data}}} $

    Proof.

    Consider $ {\textstyle {V\hspace{0pt}{(G,D)}} = {U\hspace{0pt}{(p_{g},D)}}} $ as a function of $ {\textstyle p_{g}} $ as done in the above criterion. Note that $ {\textstyle U\hspace{0pt}{(p_{g},D)}} $ is convex in $ {\textstyle p_{g}} $. The subderivatives of a supremum of convex functions include the derivative of the function at the point where the maximum is attained. In other words, if $ {\textstyle {f\hspace{0pt}{(x)}} = {\sup_{\alpha \in \mathcal{A}}{f_{\alpha}\hspace{0pt}{(x)}}}} $ and $ {\textstyle f_{\alpha}\hspace{0pt}{(x)}} $ is convex in $ {\textstyle x} $ for every $ {\textstyle \alpha} $, then $ {\textstyle {\partial{f_{\beta}\hspace{0pt}{(x)}}} \in {\partial f}} $ if $ {\textstyle \beta = {\arg\hspace{0pt}{\sup_{\alpha \in \mathcal{A}}{f_{\alpha}\hspace{0pt}{(x)}}}}} $. This is equivalent to computing a gradient descent update for $ {\textstyle p_{g}} $ at the optimal $ {\textstyle D} $ given the corresponding $ {\textstyle G} $. $ {\textstyle \sup_{D}{U\hspace{0pt}{(p_{g},D)}}} $ is convex in $ {\textstyle p_{g}} $ with a unique global optima as proven in Thm 1, therefore with sufficiently small updates of $ {\textstyle p_{g}} $, $ {\textstyle p_{g}} $ converges to $ {\textstyle p_{x}} $, concluding the proof. ∎

    In practice, adversarial nets represent a limited family of $ {\textstyle p_{g}} $ distributions via the function $ {\textstyle G\hspace{0pt}{({\mathbf{z}};\theta_{g})}} $, and we optimize $ {\textstyle \theta_{g}} $ rather than $ {\textstyle p_{g}} $ itself. Using a multilayer perceptron to define $ {\textstyle G} $ introduces multiple critical points in parameter space. However, the excellent performance of multilayer perceptrons in practice suggests that they are a reasonable model to use despite their lack of theoretical guarantees.

    5 Experiments

    We trained adversarial nets an a range of datasets including MNIST[23], the Toronto Face Database (TFD) [28], and CIFAR-10 [21]. The generator nets used a mixture of rectifier linear activations [19, 9] and sigmoid activations, while the discriminator net used maxout [10] activations. dropout [17] was applied in training the discriminator net. While our theoretical framework permits the use of dropout and other noise at intermediate layers of the generator, we used noise as the input to only the bottommost layer of the generator network.

    We estimate probability of the test set data under $ {\textstyle p_{g}} $ by fitting a Gaussian Parzen window to the samples generated with $ {\textstyle G} $ and reporting the log-likelihood under this distribution. The $ {\textstyle \sigma} $ parameter of the Gaussians was obtained by cross validation on the validation set. This procedure was introduced in Breuleux et al. [8] and used for various generative models for which the exact likelihood is not tractable [25, 3, 5]. Results are reported in Table 1. This method of estimating the likelihood has somewhat high variance and does not perform well in high dimensional spaces but it is the best method available to our knowledge. Advances in generative models that can sample but not estimate likelihood directly motivate further research into how to evaluate such models.

    Model MNIST TFD
    DBN [3] $ {\textstyle 138 \pm 2} $ $ {\textstyle 1909 \pm 66} $
    Stacked CAE [3] $ {\textstyle 121 \pm 1.6} $ $ {\textstyle \mathbf{2}\mathbf{1}\mathbf{1}\mathbf{0} \pm \mathbf{5}\mathbf{0}} $
    Deep GSN [6] $ {\textstyle 214 \pm 1.1} $ $ {\textstyle 1890 \pm 29} $
    Adversarial nets $ {\textstyle \mathbf{2}\mathbf{2}\mathbf{5} \pm \mathbf{2}} $ $ {\textstyle \mathbf{2}\mathbf{0}\mathbf{5}\mathbf{7} \pm \mathbf{2}\mathbf{6}} $

    In Figures 2 and 3 we show samples drawn from the generator net after training. While we make no claim that these samples are better than samples generated by existing methods, we believe that these samples are at least competitive with the better generative models in the literature and highlight the potential of the adversarial framework.

    Refer to caption Refer to caption
    a) b)
    Refer to caption Refer to caption
    c) d)

    Refer to caption Refer to caption

    Deep directed graphical models Deep undirected graphical models Generative autoencoders Adversarial models
    Training Inference needed during training. Inference needed during training. MCMC needed to approximate partition function gradient. Enforced tradeoff between mixing and power of reconstruction generation Synchronizing the discriminator with the generator. Helvetica.
    Inference Learned approximate inference Variational inference MCMC-based inference Learned approximate inference
    Sampling No difficulties Requires Markov chain Requires Markov chain No difficulties
    Evaluating $ {\textstyle p\hspace{0pt}{(x)}} $ Intractable, may be approximated with AIS Intractable, may be approximated with AIS Not explicitly represented, may be approximated with Parzen density estimation Not explicitly represented, may be approximated with Parzen density estimation
    Model design Nearly all models incur extreme difficulty Careful design needed to ensure multiple properties Any differentiable function is theoretically permitted Any differentiable function is theoretically permitted

    6 Advantages and disadvantages

    This new framework comes with advantages and disadvantages relative to previous modeling frameworks. The disadvantages are primarily that there is no explicit representation of $ {\textstyle p_{g}\hspace{0pt}{({\mathbf{x}})}} $, and that $ {\textstyle D} $ must be synchronized well with $ {\textstyle G} $ during training (in particular, $ {\textstyle G} $ must not be trained too much without updating $ {\textstyle D} $, in order to avoid “the Helvetica scenario” in which $ {\textstyle G} $ collapses too many values of $ {\textstyle \mathbf{z}} $ to the same value of $ {\textstyle \mathbf{x}} $ to have enough diversity to model $ {\textstyle p_{\text{data}}} $), much as the negative chains of a Boltzmann machine must be kept up to date between learning steps. The advantages are that Markov chains are never needed, only backprop is used to obtain gradients, no inference is needed during learning, and a wide variety of functions can be incorporated into the model. Table 2 summarizes the comparison of generative adversarial nets with other generative modeling approaches.

    The aforementioned advantages are primarily computational. Adversarial models may also gain some statistical advantage from the generator network not being updated directly with data examples, but only with gradients flowing through the discriminator. This means that components of the input are not copied directly into the generator’s parameters. Another advantage of adversarial networks is that they can represent very sharp, even degenerate distributions, while methods based on Markov chains require that the distribution be somewhat blurry in order for the chains to be able to mix between modes.

    7 Conclusions and future work

    This framework admits many straightforward extensions:

    1. 1.

      A conditional generative model $ {\textstyle p\hspace{0pt}{({{\mathbf{x}} \mid {\mathbf{c}}})}} $ can be obtained by adding $ {\textstyle \mathbf{c}} $ as input to both $ {\textstyle G} $ and $ {\textstyle D} $.

    2. 2.

      Learned approximate inference can be performed by training an auxiliary network to predict $ {\textstyle \mathbf{z}} $ given $ {\textstyle \mathbf{x}} $. This is similar to the inference net trained by the wake-sleep algorithm  [15] but with the advantage that the inference net may be trained for a fixed generator net after the generator net has finished training.

    3. 3.

      One can approximately model all conditionals $ {\textstyle p\hspace{0pt}{({{\mathbf{x}}_{S} \mid {\mathbf{x}}_{\mathit{S\not{}}}})}} $ where $ {\textstyle S} $ is a subset of the indices of $ {\textstyle \mathbf{x}} $ by training a family of conditional models that share parameters. Essentially, one can use adversarial nets to implement a stochastic extension of the deterministic MP-DBM [11].

    4. 4.

      Semi-supervised learning: features from the discriminator or inference net could improve performance of classifiers when limited labeled data is available.

    5. 5.

      Efficiency improvements: training could be accelerated greatly by divising better methods for coordinating $ {\textstyle G} $ and $ {\textstyle D} $ or determining better distributions to sample $ {\textstyle \mathbf{z}} $ from during training.

    This paper has demonstrated the viability of the adversarial modeling framework, suggesting that these research directions could prove useful.

    Acknowledgments

    We would like to acknowledge Patrice Marcotte, Olivier Delalleau, Kyunghyun Cho, Guillaume Alain and Jason Yosinski for helpful discussions. Yann Dauphin shared his Parzen window evaluation code with us. We would like to thank the developers of Pylearn2 [12] and Theano [7, 1], particularly Frédéric Bastien who rushed a Theano feature specifically to benefit this project. Arnaud Bergeron provided much-needed support with LaTeX typesetting. We would also like to thank CIFAR, and Canada Research Chairs for funding, and Compute Canada, and Calcul Québec for providing computational resources. Ian Goodfellow is supported by the 2013 Google Fellowship in Deep Learning. Finally, we would like to thank Les Trois Brasseurs for stimulating our creativity.

    References

    • Bastien et al. [2012] Bastien, F., Lamblin, P., Pascanu, R., Bergstra, J., Goodfellow, I. J., Bergeron, A., Bouchard, N., and Bengio, Y. (2012). Theano: new features and speed improvements. Deep Learning and Unsupervised Feature Learning NIPS 2012 Workshop.
    • Bengio [2009] Bengio, Y. (2009). Learning deep architectures for AI. Now Publishers.
    • Bengio et al. [2013a] Bengio, Y., Mesnil, G., Dauphin, Y., and Rifai, S. (2013a). Better mixing via deep representations. In ICML’13.
    • Bengio et al. [2013b] Bengio, Y., Yao, L., Alain, G., and Vincent, P. (2013b). Generalized denoising auto-encoders as generative models. In NIPS26. Nips Foundation.
    • Bengio et al. [2014a] Bengio, Y., Thibodeau-Laufer, E., and Yosinski, J. (2014a). Deep generative stochastic networks trainable by backprop. In ICML’14.
    • Bengio et al. [2014b] Bengio, Y., Thibodeau-Laufer, E., Alain, G., and Yosinski, J. (2014b). Deep generative stochastic networks trainable by backprop. In Proceedings of the 30th International Conference on Machine Learning (ICML’14).
    • Bergstra et al. [2010] Bergstra, J., Breuleux, O., Bastien, F., Lamblin, P., Pascanu, R., Desjardins, G., Turian, J., Warde-Farley, D., and Bengio, Y. (2010). Theano: a CPU and GPU math expression compiler. In Proceedings of the Python for Scientific Computing Conference (SciPy). Oral Presentation.
    • Breuleux et al. [2011] Breuleux, O., Bengio, Y., and Vincent, P. (2011). Quickly generating representative samples from an RBM-derived process. Neural Computation, 23(8), 2053–2073.
    • Glorot et al. [2011] Glorot, X., Bordes, A., and Bengio, Y. (2011). Deep sparse rectifier neural networks. In AISTATS’2011.
    • Goodfellow et al. [2013a] Goodfellow, I. J., Warde-Farley, D., Mirza, M., Courville, A., and Bengio, Y. (2013a). Maxout networks. In ICML’2013.
    • Goodfellow et al. [2013b] Goodfellow, I. J., Mirza, M., Courville, A., and Bengio, Y. (2013b). Multi-prediction deep Boltzmann machines. In NIPS’2013.
    • Goodfellow et al. [2013c] Goodfellow, I. J., Warde-Farley, D., Lamblin, P., Dumoulin, V., Mirza, M., Pascanu, R., Bergstra, J., Bastien, F., and Bengio, Y. (2013c). Pylearn2: a machine learning research library. arXiv preprint arXiv:1308.4214.
    • Gutmann and Hyvarinen [2010] Gutmann, M. and Hyvarinen, A. (2010). Noise-contrastive estimation: A new estimation principle for unnormalized statistical models. In AISTATS’2010.
    • Hinton et al. [2012a] Hinton, G., Deng, L., Dahl, G. E., Mohamed, A., Jaitly, N., Senior, A., Vanhoucke, V., Nguyen, P., Sainath, T., and Kingsbury, B. (2012a). Deep neural networks for acoustic modeling in speech recognition. IEEE Signal Processing Magazine, 29(6), 82–97.
    • Hinton et al. [1995] Hinton, G. E., Dayan, P., Frey, B. J., and Neal, R. M. (1995). The wake-sleep algorithm for unsupervised neural networks. Science, 268, 1558–1161.
    • Hinton et al. [2006] Hinton, G. E., Osindero, S., and Teh, Y. (2006). A fast learning algorithm for deep belief nets. Neural Computation, 18, 1527–1554.
    • Hinton et al. [2012b] Hinton, G. E., Srivastava, N., Krizhevsky, A., Sutskever, I., and Salakhutdinov, R. (2012b). Improving neural networks by preventing co-adaptation of feature detectors. Technical report, arXiv:1207.0580.
    • Hyvärinen [2005] Hyvärinen, A. (2005). Estimation of non-normalized statistical models using score matching. J. Machine Learning Res., 6.
    • Jarrett et al. [2009] Jarrett, K., Kavukcuoglu, K., Ranzato, M., and LeCun, Y. (2009). What is the best multi-stage architecture for object recognition? In Proc. International Conference on Computer Vision (ICCV’09), pages 2146–2153. IEEE.
    • Kingma and Welling [2014] Kingma, D. P. and Welling, M. (2014). Auto-encoding variational bayes. In Proceedings of the International Conference on Learning Representations (ICLR).
    • Krizhevsky and Hinton [2009] Krizhevsky, A. and Hinton, G. (2009). Learning multiple layers of features from tiny images. Technical report, University of Toronto.
    • Krizhevsky et al. [2012] Krizhevsky, A., Sutskever, I., and Hinton, G. (2012). ImageNet classification with deep convolutional neural networks. In NIPS’2012.
    • LeCun et al. [1998] LeCun, Y., Bottou, L., Bengio, Y., and Haffner, P. (1998). Gradient-based learning applied to document recognition. Proceedings of the IEEE, 86(11), 2278–2324.
    • Rezende et al. [2014] Rezende, D. J., Mohamed, S., and Wierstra, D. (2014). Stochastic backpropagation and approximate inference in deep generative models. Technical report, arXiv:1401.4082.
    • Rifai et al. [2012] Rifai, S., Bengio, Y., Dauphin, Y., and Vincent, P. (2012). A generative process for sampling contractive auto-encoders. In ICML’12.
    • Salakhutdinov and Hinton [2009] Salakhutdinov, R. and Hinton, G. E. (2009). Deep Boltzmann machines. In AISTATS’2009, pages 448–455.
    • Smolensky [1986] Smolensky, P. (1986). Information processing in dynamical systems: Foundations of harmony theory. In D. E. Rumelhart and J. L. McClelland, editors, Parallel Distributed Processing, volume 1, chapter 6, pages 194–281. MIT Press, Cambridge.
    • Susskind et al. [2010] Susskind, J., Anderson, A., and Hinton, G. E. (2010). The Toronto face dataset. Technical Report UTML TR 2010-001, U. Toronto.
    • Tieleman [2008] Tieleman, T. (2008). Training restricted Boltzmann machines using approximations to the likelihood gradient. In W. W. Cohen, A. McCallum, and S. T. Roweis, editors, ICML 2008, pages 1064–1071. ACM.
    • Vincent et al. [2008] Vincent, P., Larochelle, H., Bengio, Y., and Manzagol, P.-A. (2008). Extracting and composing robust features with denoising autoencoders. In ICML 2008.
    • Younes [1999] Younes, L. (1999). On the convergence of Markovian stochastic algorithms with rapidly decreasing ergodicity rates. Stochastics and Stochastic Reports, 65(3), 177–228.