What is: LAPGAN?
Source | Deep Generative Image Models using a Laplacian Pyramid of Adversarial Networks |
Year | 2000 |
Data Source | CC BY-SA - https://paperswithcode.com |
A LAPGAN, or Laplacian Generative Adversarial Network, is a type of generative adversarial network that has a Laplacian pyramid representation. In the sampling procedure following training, we have a set of generative convnet models {}, each of which captures the distribution of coefficients for natural images at a different level of the Laplacian pyramid. Sampling an image is akin to a reconstruction procedure, except that the generative models are used to produce the ’s:
The recurrence starts by setting and using the model at the final level to generate a residual image using noise vector : . Models at all levels except the final are conditional generative models that take an upsampled version of the current image as a conditioning variable, in addition to the noise vector .
The generative models {} are trained using the CGAN approach at each level of the pyramid. Specifically, we construct a Laplacian pyramid from each training image . At each level we make a stochastic choice (with equal probability) to either (i) construct the coefficients either using the standard Laplacian pyramid coefficient generation procedure or (ii) generate them using $G_{k}:
Here is a convnet which uses a coarse scale version of the image as an input, as well as noise vector . takes as input or , along with the low-pass image (which is explicitly added to or before the first convolution layer), and predicts if the image was real or generated. At the final scale of the pyramid, the low frequency residual is sufficiently small that it can be directly modeled with a standard GAN: and only has or as input.
Breaking the generation into successive refinements is the key idea. We give up any “global” notion of fidelity; an attempt is never made to train a network to discriminate between the output of a cascade and a real image and instead the focus is on making each step plausible.