Wasserstein Auto-Encoders
Ilya Tolstikhin, Olivier Bousquet, Sylvain Gelly, Bernhard Schoelkopf
Introduction
The field of representation learning was initially driven by supervised approaches, with impressive results using large labelled datasets. Unsupervised generative modeling, in contrast, used to be a domain governed by probabilistic approaches focusing on low-dimensional data. Recent years have seen a convergence of those two approaches. In the new field that formed at the intersection, variational auto-encoders (VAEs) constitute one well-established approach, theoretically elegant yet with the drawback that they tend to generate blurry samples when applied to natural images. In contrast, generative adversarial networks (GANs) turned out to be more impressive in terms of the visual quality of images sampled from the model, but come without an encoder, have been reported harder to train, and suffer from the “mode collapse” problem where the resulting model is unable to capture all the variability in the true data distribution. There has been a flurry of activity in assaying numerous configurations of GANs as well as combinations of VAEs and GANs. A unifying framework combining the best of GANs and VAEs in a principled way is yet to be discovered.
This work builds up on the theoretical analysis presented in . Following , we approach generative modeling from the optimal transport (OT) point of view. The OT cost is a way to measure a distance between probability distributions and provides a much weaker topology than many others, including -divergences associated with the original GAN algorithms . This is particularly important in applications, where data is usually supported on low dimensional manifolds in the input space . As a result, stronger notions of distances (such as -divergences, which capture the density ratio between distributions) often max out, providing no useful gradients for training. In contrast, OT was claimed to have a nicer behaviour although it requires, in its GAN-like implementation, the addition of a constraint or a regularization term into the objective.
In this work we aim at minimizing OT between the true (but unknown) data distribution and a latent variable model specified by the prior distribution of latent codes and the generative model of the data points given . Our main contributions are listed below (cf. also Figure 1):
Empirical evaluation of WAE on MNIST and CelebA datasets with squared cost . Our experiments show that WAE keeps the good properties of VAEs (stable training, encoder-decoder architecture, and a nice latent manifold structure) while generating samples of better quality, approaching those of GANs.
We propose and examine two different regularizers . One is based on GANs and adversarial training in the latent space . The other uses the maximum mean discrepancy, which is known to perform well when matching high-dimensional standard normal distributions . Importantly, the second option leads to a fully adversary-free min-min optimization problem.
Finally, the theoretical considerations presented in and used here to derive the WAE objective might be interesting in their own right. In particular, Theorem 1 shows that in the case of generative models, the primal form of is equivalent to a problem involving the optimization of a probabilistic encoder .
The paper is structured as follows. In Section 2 we review a novel auto-encoder formulation for OT between and the latent variable model derived in . Relaxing the resulting constrained optimization problem we arrive at an objective of Wasserstein auto-encoders. We propose two different regularizers, leading to WAE-GAN and WAE-MMD algorithms. Section 3 discusses the related work. We present the experimental results in Section 4 and conclude by pointing out some promising directions for future work.
Proposed method
2 Optimal transport and its dual formulations
A rich class of divergences between probability distributions is induced by the optimal transport (OT) problem . Kantorovich’s formulation of the problem is given by
where is any measurable cost function and is a set of all joint distributions of with marginals and respectively. A particularly interesting case is when is a metric space and for . In this case , the -th root of , is called the -Wasserstein distance.
When the following Kantorovich-Rubinstein duality holds Note that the same symbol is used for and , but only is a number and thus the above refers to the 1-Wasserstein distance. :
where is the class of all bounded 1-Lipschitz functions on .
3 Application to generative models: Wasserstein auto-encoders
One way to look at modern generative models like VAEs and GANs is to postulate that they are trying to minimize certain discrepancy measures between the data distribution and the model . Unfortunately, most of the standard divergences known in the literature, including those listed above, are hard or even impossible to compute, especially when is unknown and is parametrized by deep neural networks. Previous research provides several tricks to address this issue.
In this work we will focus on latent variable models defined by a two-step procedure, where first a code is sampled from a fixed distribution on a latent space and then is mapped to the image with a (possibly random) transformation. This results in a density of the form
assuming all involved densities are properly defined. For simplicity we will focus on non-random decoders, i.e. generative models deterministically mapping to for a given map . Similar results for random decoders can be found in Supplementary B.1.
For as defined above with deterministic and any function
where is the marginal distribution of when and .
This result allows us to optimize over random encoders instead of optimizing over all couplings between and . Of course, both problems are still constrained. In order to implement a numerical solution we relax the constraints on by adding a penalty to the objective. This finally leads us to the WAE objective:
where is any nonparametric set of probabilistic encoders, is an arbitrary divergence between and , and is a hyperparameter. Similarly to VAE, we propose to use deep neural networks to parametrize both encoders and decoders . Note that as opposed to VAEs, the WAE formulation allows for non-random encoders deterministically mapping inputs to their latent codes.
We propose two different penalties :
MMD-based . For a positive-definite reproducing kernel the following expression is called the maximum mean discrepancy (MMD):
Related work
Literature on auto-encoders Classical unregularized auto-encoders minimize only the reconstruction cost. This results in different training points being encoded into non-overlapping zones chaotically scattered all across the space with “holes” in between where the decoder mapping has never been trained. Overall, the encoder trained in this way does not provide a useful representation and sampling from the latent space becomes hard .
When used with WAE-GAN is equivalent to adversarial auto-encoders (AAE) proposed by . Theory of (and in particular Theorem 1) thus suggests that AAEs minimize the 2-Wasserstein distance between and . This provides the first theoretical justification for AAEs known to the authors. WAE generalizes AAE in two ways: first, it can use any cost function in the input space ; second, it can use any discrepancy measure in the latent space (for instance MMD), not necessarily the adversarial one of WAE-GAN.
Finally, independently proposed a regularized auto-encoder objective similar to and our (4) based on very different motivations and arguments. Following VAEs their objective (called InfoVAE) defines the reconstruction cost in the image space implicitly through the negative log likelihood term , which should be properly normalized for all . In theory VAE and InfoVAE can both induce arbitrary cost functions, however in practice this may require an estimation of the normalizing constant (partition function) which canTwo popular choices are Gaussian and Bernoulli decoders leading to pixel-wise squared and cross-entropy losses respectively. In both cases the normalizing constants can be computed in closed form and don’t depend on . be different for different values of . WAEs specify the cost explicitly and don’t constrain it in any way.
Literature on OT address computing the OT cost in large scale using SGD and sampling. They approach this task either through the dual formulation, or via a regularized version of the primal. They do not discuss any implications for generative modeling. Our approach is based on the primal form of OT, we arrive at regularizers which are very different, and our main focus is on generative modeling.
The WGAN minimizes the 1-Wasserstein distance for generative modeling. The authors approach this task from the dual form. Their algorithm comes without an encoder and can not be readily applied to any other cost , because the neat form of the Kantorovich-Rubinstein duality (2) holds only for . WAE approaches the same problem from the primal form, can be applied for any cost function , and comes naturally with an encoder.
Literature on GANs Many of the GAN variations (including -GAN and WGAN) come without an encoder. Often it may be desirable to reconstruct the latent codes and use the learned manifold, in which cases these models are not applicable.
Experiments
In this section we empirically evaluate The code is available at github.com/tolstikhin/wae. the proposed WAE model. We would like to test if WAE can simultaneously achieve (i) accurate reconstructions of data points, (ii) reasonable geometry of the latent manifold, and (iii) random samples of good (visual) quality. Importantly, the model should generalize well: requirements (i) and (ii) should be met on both training and test data. We trained WAE-GAN and WAE-MMD (Algorithms 1 and 2) on two real-world datasets: MNIST consisting of 70k images and CelebA containing roughly 203k images.
Experimental setup In all reported experiments we used Euclidian latent spaces for various depending on the complexity of the dataset, isotropic Gaussian prior distributions over , and a squared cost function for data points . We used deterministic encoder-decoder pairs, Adam with , and convolutional deep neural network architectures for encoder mapping and decoder mapping similar to the DCGAN ones reported by with batch normalization . We tried various values of and noticed that seems to work good across all datasets we considered.
Since we are using deterministic encoders, choosing larger than intrinsic dimensionality of the dataset would force the encoded distribution to live on a manifold in . This would make matching to impossible if is Gaussian and may lead to numerical instabilities. We use for MNIST and for CelebA which seems to work reasonably well.
We also report results of VAEs. VAEs used the same latent spaces as discussed above and standard Gaussian priors . We used Gaussian encoders Q(Z|X)=\mathcal{N}\bigl{(}Z;\mu_{\phi}(X),\Sigma(X)\bigr{)} with mean and diagonal covariance . For MNIST we used Bernoulli decoders parametrized by and for CelebA the Gaussian decoders P_{G}(X|Z)=\mathcal{N}\bigl{(}X;G_{\theta}(Z),\sigma^{2}_{G}\cdot\bm{I}_{d}\bigr{)} with mean . Functions , , and were parametrized by deep nets of the same architectures as in WAE.
Random samples are generated by sampling and decoding the resulting noise vectors into . As expected, in our experiments we observed that for both WAE-GAN and WAE-MMD the quality of samples strongly depends on how accurately matches . To see this, notice that during training the decoder function is presented only with encoded versions of the data points . Indeed, the decoder is trained on samples from and thus there is no reason to expect good results when feeding it with samples from . In our experiments we noticed that even slight differences between and may affect the quality of samples.
In some cases WAE-GAN seems to lead to a better matching and generates better samples than WAE-MMD. However, due to adversarial training WAE-GAN is less stable than WAE-MMD, which has a very stable training much like VAE.
In order to quantitatively assess the quality of the generated images, we use the Fréchet Inception Distance introduced by and report the results on CelebA based on samples. We also heuristically evaluate the sharpness of generated samples Every image is converted to greyscale and convolved with the Laplace filter , which acts as an edge detector. We compute the variance of the resulting activations and average these values across 1000 images sampled from a given model. The blurrier the image, the less edges it has, and the more activations will be close to zero, leading to smaller variances. using the Laplace filter. The numbers, summarized in Table 1, show that WAE-MMD has samples of slightly better quality than VAE, while WAE-GAN achieves the best results overall. The bigVAE, bigWAE-MMD, and bigWAE-GAN also included in the table are the best models based on larger scale study reported in Supplementary D, which involved a much wider hyperparameter sweep, as well as using ResNet50-v2 architecture for the encoder and decoder mappings.
Test reconstructions and interpolations. We take random points from the held out test set and report their auto-encoded versions . Next, pairs of different data points are sampled randomly from the held out test set and encoded: , . We linearly interpolate between and with equally-sized steps in the latent space and show decoded images.
Conclusion
Using the optimal transport cost, we have derived Wasserstein auto-encoders—a new family of algorithms for building generative models. We discussed their relations to other probabilistic modeling techniques. We conducted experiments using two particular implementations of the proposed method, showing that in comparison to VAEs, the images sampled from the trained WAE models are of better quality, without compromising the stability of training and the quality of reconstruction. Future work will include further exploration of the criteria for matching the encoded distribution to the prior distribution , assaying the possibility of adversarially training the cost function in the input space , and a theoretical analysis of the dual formulations for WAE-GAN and WAE-MMD.
The authors are thankful to Carl Johann Simon-Gabriel, Mateo Rojas-Carulla, Arthur Gretton, Paul Rubenstein, and Fei Sha for stimulating discussions. The authors also thank Josip Djolonga, Carlos Riquelme, and Paul Rubenstein for carrying out extended experimental evaluations (bigWAE and bigVAE) reported in Table 1 and Section D.
References
Appendix A Implicit generative models: a short tour of GANs and VAEs
Even though GANs and VAEs are quite different—both in terms of the conceptual frameworks and empirical performance—they share important features: (a) both can be trained by sampling from the model without knowing an analytical form of its density and (b) both can be scaled up with SGD. As a result, it becomes possible to use highly flexible implicit models defined by a two-step procedure, where first a code is sampled from a fixed distribution on a latent space and then is mapped to the image with a (possibly random) transformation . This results in latent variable models of the form (3).
These models are indeed easy to sample and, provided can be differentiated analytically with respect to its parameters, can be trained with SGD. The field is growing rapidly and numerous variations of VAEs and GANs are available in the literature. Next we introduce and compare several of them.
The original generative adversarial network (GAN) approach minimizes
Variational auto-encoders (VAE) utilize models of the form (3) and minimize
Appendix B Proof of Theorem 1 and further details
We will consider certain sets of joint probability distributions of three random variables . The reader may wish to think of as true images, as images sampled from the model, and as latent codes. We denote by a joint distribution of a variable pair , where is first sampled from and next from . Note that defined in (3) and used throughout this work is the marginal distribution of when .
In the optimal transport problem (1), we consider joint distributions which are called couplings between values of and . Because of the marginal constraint, we can write and we can consider as a non-deterministic mapping from to . Theorem 1. shows how to factor this mapping through , i.e., decompose it into an encoding distribution and the generating distribution .
As in Section 2.2, denotes the set of all joint distributions of with marginals , and likewise for . The set of all joint distributions of such that , , and (Y\mathchoice{\mathrel{\hbox to0.0pt{\displaystyle\perp\hss}\mkern 2.0mu{\displaystyle\perp}}}{\mathrel{\hbox to0.0pt{\textstyle\perp\hss}\mkern 2.0mu{\textstyle\perp}}}{\mathrel{\hbox to0.0pt{\scriptstyle\perp\hss}\mkern 2.0mu{\scriptstyle\perp}}}{\mathrel{\hbox to0.0pt{\scriptscriptstyle\perp\hss}\mkern 2.0mu{\scriptscriptstyle\perp}}}X)|Z will be denoted by . Finally, we denote by and the sets of marginals on and (respectively) induced by distributions in . Note that , , and depend on the choice of conditional distributions , while does not. In fact, it is easy to check that . From the definitions it is clear that and we immediately get the following upper bound:
If are Dirac measures (i.e., ), it turns out that :
with identity if We conjecture that this is also a necessary condition. The necessity is not used in the paper. are Dirac for all .
We are now in place to prove Theorem 1. Lemma 2 obviously leads to
The tower rule of expectation, and the conditional independence property of implies
It remains to notice that as stated earlier.
If the decoders are non-deterministic, Lemma 2 provides only the inclusion of sets and we get the following upper bound on the OT:
Let and assume the conditional distributions have mean values and marginal variances for all , where . Take . Then
First inequality follows from (9). For the identity we proceed similarly to the proof of Theorem 1 and write
Together with (11) and the fact that this concludes the proof. ∎
Appendix C Further details on experiments
We use mini-batches of size 100 and trained the models for 100 epochs. We used and . For the encoder-decoder pair we set for Adam in the beginning and for the adversary in WAE-GAN to . After 30 epochs we decreased both by factor of 2, and after first 50 epochs further by factor of 5.
Both encoder and decoder used fully convolutional architectures with 4x4 convolutional filters.
Finally, we used two heuristics. First, we always pretrained separately the encoder for several mini-batch steps before the main training stage so that the sample mean and covariance of would try to match those of . Second, while training we were adding a pixel-wise Gaussian noise truncated at to all the images before feeding them to the encoder, which was meant to make the encoders random. We played with all possible ways of combining these two heuristics and noticed that together they result in slightly (almost negligibly) better results compared to using only one or none of them.
Our VAE model used cross-entropy loss (Bernoulli decoder) and otherwise same architectures and hyperparameters as listed above.
C.2 CelebA
We pre-processed CelebA images by first taking a 140x140 center crops and then resizing to the 64x64 resolution. We used mini-batches of size 100 and trained the models for various number of epochs (up to 250). All reported WAE models were trained for 55 epochs and VAE for 68 epochs. For WAE-MMD we used and for WAE-GAN . Both used .
For WAE-MMD the learning rate of Adam was initially set to . For WAE-GAN the learning rate of Adam for the encoder-decoder pair was initially set to and for the adversary to . All learning rates were decreased by factor of 2 after 30 epochs, further by factor of 5 after 50 first epochs, and finally additional factor of 10 after 100 first epochs.
Both encoder and decoder used fully convolutional architectures with 5x5 convolutional filters.
For WAE-GAN we used a heuristic proposed in Supplementary IV of . Notice that the theoretically optimal discriminator would result in , where and are densities of and respectively. In our experiments we added the log prior explicitly to the adversary output as we know it analytically. This should hopefully make it easier for the adversary to learn the remaining density term.
VAE model used squared loss, i.e. Gaussian decoders P_{G}(X|Z)={\mathcal{N}\bigl{(}X;G_{\theta}(Z),\sigma^{2}_{G}\cdot\bm{I}_{d}\bigr{)}} with . We also tried using Bernoulli decoders (the cross-entropy loss) and observed that they matched the performance of the Gaussian decoder with the best choice of . We decided to report the VAE model which used the same reconstruction loss as our WAE models, i.e. the squared loss. VAE model used as the initial Adam learning rate and did not use batch normalization. Otherwise all the architectures and hyperparameters were as explained above.
Appendix D Extended experimental setup (bigVAE and bigWAE)
In this section we will shortly report the experimental results we got while running a larger scale study, which involved a much wider hyperparameter sweep, as well as using ResNet50-v2 architecture for the encoder and decoder mappings.
In total we trained over 3 thousand WAE-GAN, WAE-MMD, and VAE models with various hyperparameters while making sure each one of the three algorithms gets exactly the same computational budget. Each model was trained on 8 Google Cloud TPU-v2 hardware accelerators for 100 000 mini-batch steps with Adam using the same default parameters as reported in the previous section. For each new model that we trained we selected a hyperparameters configuration randomly (from the ranges listed below) and trained each configuration with three different random seeds.
The dimensionality of the latent space was chosen uniformly from ;
The mini-batch size was chosen uniformly from ;
The learning rate of Adam for the encoder-decoder pair across all three models was sampled from the log-uniform distribution on ;
The learning rate of Adam for the adversary of WAE-GAN was sampled from the log-uniform distribution on ;
For WAE-MMD we used a sum of inverse multiquadratics kernels at various scales:
where was kept fixed and the base scale was sampled uniformly from ;
The regularization coefficient for WAE-GAN and WAE-MMD was sampled uniformly from ;
For VAE effectively plays the role of the regularization coefficient . We sample the value of uniformly from $$;
For both encoder and decoder mappings we use either DCGAN-style convolutional DNN architectures reported in the previous sections or the ResNet50-v2 architecture;
For WAE-MMD and WAE-GAN we uniformly choose either deterministic encoder mapping (like the one used in the previous sections) or stochastic Gaussian one with a diagonal covariance (like in VAE).
For each model (hyperparameter configuration) we (i) saved several intermediate checkpoints, (ii) evaluated all of them using the FID score as described in the previous sections (based on 10 000 samples), and (iii) selected the checkpoint with the lowest FID score. The figures below display some resulting statistics of these models.