A Survey of Stabilizing Generative Adversarial Networks

Gulnara Timokhina
6 min readMay 16, 2020

--

Based on https://arxiv.org/pdf/1910.00927.pdf

Generative Adversarial Networks (GANs) are generative models that are popular because they can reproduce real-world data. Training GANs is still a challenging problem, due to non-convergence, exploding or vanishing gradients, and mode collapse.

Recently, many methods have been proposed to improve stabilizing the GAN training process. Presented here are existing GAN training stabilization methods with their advantages and disadvantages.

A Generative Adversarial Network (GAN) is a generative model trained by deep learning methods, such as convolutional neural networks. Generative models can be seen as an unsupervised task that discovers patterns in input data which can be used to generate new examples from the original dataset. The GAN method was originally described in Ian Goodfellow’s paper “Generative Adversarial Networks.” (2014)

The Generative Adversarial Networks model has two sub-models:

● Generator (G) model to generate new samples

● Discriminator (D) model to classify whether generated samples are real or fake

It’s like a game. The generator creates new samples, and the discriminator tries to differentiate samples between the input data and from the generator. As a result of such confrontational training, GANs can generate realistic images.

GANs accomplish state-of-the-art results in the generation of images, NLP, time-series and other domains.

But, despite good results, the training of a GAN has proven to be unstable.

The main causes of this instability are:

  1. Convergence

In the original paper Goodfellow (2014) showed that at D = ½,

the loss function relates to a Nash equilibrium (NE) in which neither actor can improve their score unilaterally (Nash, 1951).

In practice, achieving this equilibrium/convergence is not straightforward because the discriminator and generator are neural networks. The optimization relates to the parameter space of these networks, instead of directly learning the probability density function. Moreover, the non-convex-concave nature of the game makes it very hard for the gradient descent ascent (GDA) to converge, regularly resulting in diverging, oscillating, or cyclic behavior (Mertikopoulos, 2017; Salimans, 2016; Goodfellow, 2015) and proneness to convergence to a local Nash equilibrium (NE) in the parameter space of the neural networks.

Also, the local NE can be far away from the global NE, preventing the discriminator from being optimal in this case. Lastly, training the discriminator to an optimal result for every iteration of the generator is computationally expensive.

  1. Exploding or Vanishing Gradients

According to the theory of Nash equilibrium (NE) that Goodfellow supported, a discriminator near to optimality would create a meaningful response in the generator, thus creating an improved generator. The cost of the well trained discriminator approaches 0.

Such a perfect discriminator squeezes the loss function to 0, making gradients approach zero, which gives small responses to the generator, slowing down or totally stopping the learning. Later, as the discriminator improves at differentiating real and generated samples, the updates to the generator get worse.

When a discriminator approaches such perfection, its gradients will reach zero on nearly every data point, returning no feedback to the generator. To fix the vanishing gradients, Goodfellow (2014) suggested another loss function, which is named as non-saturating (NS) loss.

Though this loss variation improves the vanishing gradients problem, change to the loss still produces less stable and oscillating training.

  1. Mode Collapse

Mode collapse occurs when the generator maps various inputs to the same output, which means that the generator creates samples of low diversity (Huszar, 2016; Theis, 2015). This is a problem for training, because a generator with no ability to create various samples is not valuable for training purposes. This is a difficult problem, since the reason for mode collapse is going deeply in the concepts of GANs.

There are currently five main GAN Variants and Stabilization Techniques: architecture, loss function, game theory, multi-agent, and gradient-based.

Modified Architectures

Different architectures of GANs have been shown to improve the stability of training in GANs. However, the scale at which these methods achieve the improvements of the training differs widely. A current solid model is BigGAN, which improves the training in all aspects. However, it is computationally expensive, and improvement leads to increase in complexity of the model.

Developing different architectures for GANs is a developing and active field, which offers small performance enhancements for application-specific GANs. The nonconvex-concave model of the GAN game is a task that will require improvements outside of changes in architecture.

Modified Loss Functions

Different loss functions of GANs are very heavily studied after the architecture variations at this time. Some variations of the loss function overcome the vanishing gradient problem (Arjovsky, 2017; Jolicoeur-Martineau, 2019; Miyato, 2018; Mao, 2016; Qi, 2018).

Moreover, compared to architecture types, they propose more generalization properties. Methods like WGAN or SN-GAN are commonly applied, and they propose opportunities for further research (Pfau and Vinyals, 2017).

Also, the quality of computational complexity and generated data is not proportional to some of the various architecture of GANs such as BigGAN (Wang, 2019; Brock, 2018).

Nevertheless, variations of loss function mostly work only with certain restrictions and appropriate hyperparameter tuning often leads to superior results (Arjovsky, 2017; Gulrajani , 2017; Lucic , 2018). The stabilization of the training process is still a challenge.

Game Theory for GANs

Currently, variations of the game theory of GANs are limited. Proposed methods are very restrictive; therefore, they are not so often applicable. Nevertheless, method like computation of mixed approach Nash equilibria (MNE) (Arora, 2017) offers outstanding theoretical analysis for dealing with problems in the training process and releases an opportunity for further research.

Multi-Agent GANs

At this time, works related to multi-agent GANs often revolves around the simple approach of hindering mode collapse by the introduction of various discriminators and generators. While the results are encouraging, the computational costs present a significant problem. And it is not obvious how many generators or discriminators should be taken. Lastly, various methods in multi-agent learning works are not connected to stabilizing GAN training (Papoudakis, 2019; Loweal, 2017; He, 2016).

Modified Gradient Optimization

The original work for GANs with gradient-based variations demonstrate improvements in convergence and avoidance of mode collapse in contrast to GANs employing gradient descent ascent (GDA). Though these results could be achieved with appropriate tuning of hyperparameters.

Gradient-based methods stay a mostly unexplored area with promising research opportunities. With GDA’s limitations in general games, gradient variants offer an extra edge, and could be combined with other methods.

Here are other GAN methods which are not related to prior categories:

First is the Evolutionary GAN (Wang) that adjusts the GAN to the environment through a chain of operations on the population of discriminators and generators.

AdaGAN offers a boosting method to iteratively report the problem of missing modes (Tolstikhin, 2017). A deeply theoretical method was proposed by (Unterthiner , 2018), who suggests a method and a proof to escape local equilibria by applying energy-based potential fields. Another method to escape mode collapse suggests marginalizing the weights of the discriminator and generator presented in the Bayesian GAN (Saatchi and Wilson, 2017).

General Stabilization Heuristics

Many studies on GANs have presented that optimization of hyperparameters tends to achieve better results compared to specific methods like modified architectures and loss functions(Lucic, 2018). Additionally, other works in this area (Fedus, 2018; Kurach, 2018) have confirmed the effect of regularization and normalization methods on various loss functions and GAN architecture.

Conclusion

While we have seen an increase in published works that provide the methods to overcome GAN instability of training, many of these studies have limitations due to the fact that they provide only one training problem and the extent of rigorous theoretical explanation.

--

--

Gulnara Timokhina
Gulnara Timokhina

Written by Gulnara Timokhina

0 Followers

Data Science graduate student

No responses yet