Generative Adversarial Networks

Relativistic GAN

Introduced by Jolicoeur-Martineau in The relativistic discriminator: a key element missing from standard GAN

A Relativistic GAN is a type of generative adversarial network. It has a relativistic discriminator which estimates the probability that the given real data is more realistic than a randomly sampled fake data. The idea is to endow GANs with the property that the probability of real data being real ($D\left(x_{r}\right)$) should decrease as the probability of fake data being real ($D\left(x_{f}\right)$) increases.

With a standard GAN, we can achieve this as follows. The standard GAN discriminator can be defined, in term of the non-transformed layer $C\left(x\right)$, as $D\left(x\right) = \text{sigmoid}\left(C\left(x\right)\right)$. A simple way to make discriminator relativistic - having the output of $D$ depend on both real and fake data - is to sample from real/fake data pairs $\tilde{x} = \left(x_{r}, x_{f}\right)$ and define it as $D\left(\tilde{x}\right) = \text{sigmoid}\left(C\left(x_{r}\right) − C\left(x_{f}\right)\right)$. The modification can be interpreted as: the discriminator estimates the probability that the given real data is more realistic than a randomly sampled fake data.

More generally a Relativistic GAN can be interpreted as having a discriminator of the form $a\left(C\left(x_{r}\right)−C\left(x_{f}\right)\right)$, where $a$ is the activation function, to be relativistic.

Source: The relativistic discriminator: a key element missing from standard GAN

Papers


Paper Code Results Date Stars

Tasks


Task Papers Share
Image Super-Resolution 2 20.00%
Super-Resolution 2 20.00%
Image Generation 2 20.00%
Image-to-Image Translation 1 10.00%
Translation 1 10.00%
Face Hallucination 1 10.00%
Video Super-Resolution 1 10.00%

Components


Component Type
🤖 No Components Found You can add them if they exist; e.g. Mask R-CNN uses RoIAlign

Categories