13 GANs for Vision
From Theory to Pixels
In Chapters 9β11 we built the theoretical machinery of generative adversarial networks: the minimax game, the Wasserstein relaxation, and the optimisation algorithms that make training possible. In Chapter 12 we catalogued the core vision problems (denoising, super-resolution, inpainting, style transfer) and cast each as an inverse problem requiring a prior over natural images.
This chapter connects the two threads. We show how the GAN framework, when suitably conditioned, provides a powerful learned prior that can be plugged into each of those inverse problems. The journey proceeds in six steps:
Conditional GANs (Conditional GANs): augment the vanilla GAN with side information to steer generation.
Pix2Pix (Paired Image-to-Image Translation: Pix2Pix): paired image-to-image translation via a conditional GAN with a reconstruction loss.
CycleGAN (Unpaired Translation: CycleGAN): unpaired translation via cycle-consistency.
Progressive Growing (Progressive Growing of GANs): high-resolution synthesis through curriculum learning.
StyleGAN (Style-Based Generation: StyleGAN): fine-grained style control via adaptive normalisation.
SPADE / GauGAN (Semantic Image Synthesis: SPADE): semantic image synthesis with spatially-adaptive normalisation.
Key Idea.
Every architecture in this chapter injects structure into the generator through one of four mechanisms: conditioning (feeding side information), cycle-consistency (constraining two mappings to invert each other when no paired data exists), normalisation (modulating feature statistics), or curriculum (growing resolution gradually). Recognising which mechanism an architecture uses makes the design space far easier to navigate.
Conditional GANs
The vanilla GAN of Chapter 9 learns an unconditional generator . In most practical settings we want to control the output: generate a face with a particular attribute, synthesise an image from a text caption, or translate a sketch into a photograph. Conditional GANs (cGANs) [4] achieve this by feeding auxiliary information (a class label, an image, a text embedding, etc.) to both the generator and the discriminator.
The cGAN Objective
Definition 1 (Conditional GAN Objective).
Let denote dataβcondition pairs and let be a latent noise vector. The conditional GAN objective is (CGAN) The generator takes both noise and condition; the discriminator receives an image together with the condition and returns the probability that the pair is real.
Note the key structural difference from the unconditional GAN: the discriminator does not merely judge whether an image looks realistic; it judges whether the image is consistent with the given condition. A photorealistic cat image paired with the label βdogβ should still be rejected.
Optimal Discriminator and Generator
The analysis parallels the unconditional case (Chapter 9), but all densities are now conditioned on .
Proposition 1 (Optimal cGAN Discriminator).
For a fixed generator , the optimal discriminator is (Dstar) where is the conditional density induced by .
Proof.
For each fixed , the integrand of the value function is This is the same form as in the unconditional derivation (see Proposition Proposition 1 in Chapter 9). Maximising over by setting the derivative to zero gives
Proposition 2 (cGAN Generator Minimises Conditional JSD).
Substituting back into the value function and minimising over yields (JSD) so the generator minimises the expected conditional JensenβShannon divergence over the marginal distribution of conditions.
Proof.
Substituting into the value function and proceeding exactly as in the unconditional proof (Theorem Theorem 1 in Chapter 9), but with every density conditioned on , gives Since with equality iff a.e., the global minimum is , attained when the generator perfectly matches the class-conditional data distribution for every .
Example 1 (Class-Conditional MNIST).
Consider generating handwritten digits conditioned on a digit label . The condition is represented as a one-hot vector . In the generator, is concatenated with the noise vector before the first fully-connected layer; in the discriminator, is concatenated with the flattened image. After training, fixing and varying produces diverse images of the digit β3β, while fixing and varying produces the same style rendered as different digits, demonstrating that controls style and controls content.
Key Idea.
Conditioning transforms an unconditional density model into a family of conditional models . The discriminator ensures that each conditional distribution is realistic and consistent with ; without seeing , it could only enforce marginal realism and the generator could ignore the condition entirely.
Paired Image-to-Image Translation: Pix2Pix
When the condition is itself an image (a sketch, a segmentation map, or a low-resolution photograph) the cGAN framework becomes an image-to-image translation engine. Pix2Pix [5] instantiates this idea with two key design choices: an reconstruction loss to encourage pixel-level fidelity, and a PatchGAN discriminator to enforce local texture realism.
The Pix2Pix Objective
Definition 2 (Pix2Pix Loss).
Remark 1 (Why Instead of ?).
Minimising over yields the posterior mean , which averages over all plausible outputs and produces blurry results (recall the MMSE estimator from Theorem Theorem 1 in Chapter 12).
Minimising instead yields the posterior median, which is sharper because the loss corresponds to a Laplace likelihood rather than a Gaussian one: The heavier tails of the Laplace distribution are more tolerant of sharp edges and outlier pixels, producing less blurring in practice.
The PatchGAN Discriminator
Definition 3 (PatchGAN Discriminator).
Instead of producing a single real/fake scalar for the entire image, the PatchGAN discriminator outputs a matrix , where entry classifies whether the receptive-field patch centred at spatial location is real or fake. The adversarial loss becomes (Patchgan)
Proposition 3 (PatchGAN as a Texture Loss).
Each element of the PatchGAN output depends only on the pixels within its receptive field. Consequently, the PatchGAN loss penalises the generator for producing unrealistic local texture within each patch, effectively acting as a learned texture/style discriminator. If equals the full image size, PatchGAN reduces to a standard (global) discriminator; if , it reduces to a per-pixel classifier (PixelGAN).
Proof.
Consider the discriminator as a fully convolutional network with effective receptive field of side length . Each layer with kernel size and stride updates the receptive field and the jump by and , starting from . For layers of convolutions with stride this gives so for . Each output unit is a function only of the sub-image centred at . The per-patch losses are then independent classification problems: each enforces realism within its own local region. Summing over all patches and dividing by yields an average over all overlapping patches, equivalent to encouraging realistic local statistics everywhere, i.e., a learned texture loss.
Example 2 (Receptive Field Calculation).
The Pix2Pix ββ PatchGAN (the n_layers
configuration) uses convolutions throughout: three
stride- layers, then a stride- layer, then the stride- output
convolution. Writing for the receptive field and for the jump
(the input-pixel spacing between adjacent units), each layer applies
and then :
| Layer | Kernel | Jump in | Receptive field |
| Input | - | ||
| Conv1 (stride 2) | |||
| Conv2 (stride 2) | |||
| Conv3 (stride 2) | |||
| Conv4 (stride 1) | |||
| Output (stride 1) |
Insight.
Pix2Pix has the same two-part shape as a MAP estimate: a fidelity term plus a prior term. By Remark Remark 1 the reconstruction loss is the negative log-likelihood of a Laplace observation model for the target given the prediction, , while the adversarial loss acts as a learned log-prior : the discriminator scores how plausible an image is, which is exactly the job a hand-crafted regulariser performs in classical MAP estimation (Chapter 12). The generator is therefore pushed towards outputs that are both faithful to the paired target and βlook realβ according to the discriminator.
The correspondence is structural rather than literal: the term is a supervised loss against a known ground-truth target, not a forward-model likelihood evaluated at test time. What carries over from Chapter 12 is the division of labour, with one term enforcing agreement with the data and the other enforcing plausibility, and the fact that the second term is now learned rather than hand-designed.
Unpaired Translation: CycleGAN
Pix2Pix requires paired examples: for every input sketch there must be a corresponding target photograph. In many settings such pairs are unavailable; we may have a collection of photographs and a collection of Monet paintings, but no βMonet versionβ of each photograph. CycleGAN [6] tackles this unpaired setting by introducing a cycle-consistency constraint.
Problem Setup
Let and be two image domains with marginal distributions and . We seek two mappings: such that looks like a sample from and looks like a sample from , while the semantic content is preserved.
The CycleGAN Objective
Definition 4 (CycleGAN Loss).
The full CycleGAN objective combines two adversarial losses with a cycle-consistency loss: (Cyclegan) where the adversarial losses are (ADV1) and the cycle-consistency loss is (CYC)
Why Cycle-Consistency Works
Without the cycle-consistency loss, each generator could learn an arbitrary mapping that produces realistic outputs but bears no semantic relationship to the input (e.g., mapping every horse photograph to the same zebra). The cycle constraint prevents this by forcing the mappings to be approximately invertible.
Theorem 1 (Cycle-Consistency Implies Approximate Inverse).
Let and be deterministic, measurable mappings. If then is a bijection between and , and -almost everywhere.
Proof.
The forward cycle condition on implies that is injective on (distinct inputs cannot map to the same output, since would then recover both).
The backward cycle condition on implies that is surjective onto (every in the support is the image of under ).
Injectivity and surjectivity together give bijectivity. From , we have on .
Remark 2 (Identity Loss).
In practice, an identity loss is added: This encourages to act as an identity when applied to an image already in the target domain, preventing unnecessary colour shifts (e.g., when translating Monet photographs, a photograph should remain unchanged).
Caution.
CycleGAN assumes that the mapping between domains preserves geometric structure: a horse's outline should map to a zebra's outline. When this assumption fails, for example when translating between domains with different geometry (cats dogs), CycleGAN can produce artefacts or hallucinate structures. The cycle-consistency loss cannot prevent semantic errors, only reconstruction errors.
Progressive Growing of GANs
Generating high-resolution images (e.g., ) directly is extremely difficult: the generator must simultaneously learn coarse structure (object layout) and fine detail (skin pores, hair strands), and the discriminator must evaluate both global coherence and local texture. Progressive Growing of GANs (ProGAN) [1] addresses this by training the networks in a curriculum: start at very low resolution and gradually add layers that handle finer details.
The Progressive Training Strategy
Definition 5 (Progressive Training Schedule).
Let and denote the generator and discriminator at resolution stage , where stage operates at resolution (so is , is , etc.). Training proceeds as follows:
Train at until convergence.
For : enumerate
Add new layers to both and to handle resolution .
Fade in the new layers using a blending parameter that linearly increases from to over a fixed number of iterations.
Continue training at resolution . enumerate
The Fade-In Mechanism
Definition 6 (Fade-In Blending).
When transitioning from resolution to , the generator output is computed as (Fadein) where is the previous-resolution output, is nearest-neighbour upsampling followed by a convolution (the βtoRGBβ layer from the old block), is the feature map from the new convolutional block, and includes the new toRGB layer. The blending parameter increases linearly from to during the transition phase.
An analogous fade-in is applied in the discriminator, where a βfromRGBβ convolution is blended with the output of the new higher-resolution processing block.
Proposition 4 (Smooth Transition Preserves Training Stability).
At , the output is identical to the old-resolution output (upsampled), so the generator's distribution is unchanged. At , the old path is fully replaced by the new block. For intermediate , the output is a convex combination, so the distributional change is continuous. This prevents the βshockβ that would occur if new randomly-initialised layers were suddenly activated.
Proof.
Let denote the generator's output distribution at blending parameter . Since is a convex combination of two continuous functions of the parameters, the mapping is continuous. By the continuous mapping theorem, is continuous in the weak topology on probability measures. In particular, (the upsampled old distribution), ensuring no discontinuity at the transition boundary.
Remark 3 (Minibatch Standard Deviation).
To encourage the generator to produce diverse outputs, ProGAN appends a minibatch standard deviation layer near the end of the discriminator. For a minibatch , compute (element-wise, then averaged over all dimensions to produce a single scalar), replicate it as a constant feature map, and concatenate it with the final discriminator features. If the generator produces identical images (mode collapse), , giving the discriminator an easy signal to reject the batch.
Historical Note.
ProGAN [1] was the first GAN to produce photorealistic face images at resolution. It also introduced the CelebA-HQ dataset, a high-quality version of CelebA that became a standard benchmark. The progressive training idea directly inspired StyleGAN (Style-Based Generation: StyleGAN), which inherits the progressive architecture but adds a style-based generator for finer control.
Style-Based Generation: StyleGAN
StyleGAN [7] builds on ProGAN's progressive architecture but fundamentally redesigns the generator. Instead of feeding the latent code directly into the first layer, StyleGAN introduces a mapping network and injects style information at every resolution level through adaptive instance normalisation (AdaIN).
The Mapping Network
Definition 7 (Mapping Network).
The mapping network is a multilayer perceptron that transforms the latent code to an intermediate latent code . In the original StyleGAN, consists of 8 fully-connected layers with LeakyReLU activations, and .
Proposition 5 (Disentanglement via the Mapping Network).
The latent space is typically a hypersphere or Gaussian, which is a fixed geometry. The factors of variation in natural images (pose, lighting, expression, hair colour, etc.) do not respect this geometry: certain combinations may be impossible (e.g., a baby with wrinkles). A direct mapping must βwarpβ the latent space to avoid these forbidden regions, leading to entangled representations.
The mapping network learns a nonlinear warping such that is adapted to the data manifold. Forbidden regions in are mapped away, and the resulting space has a geometry where linear interpolation corresponds to semantically meaningful changes.
Adaptive Instance Normalisation
Definition 8 (Adaptive Instance Normalisation (AdaIN)).
Let be the -th feature map in a convolutional layer and let be the style code. A learned affine transformation maps to per-channel scale and bias: (Affine) where is the number of channels. AdaIN then normalises and re-scales each feature map: (Adain) where and are the spatial mean and standard deviation of (computed over ), and is a small constant for numerical stability.
Remark 4 (AdaIN as Style Injection).
Instance normalisation removes the original feature statistics (mean and variance), which encode βstyleβ information such as contrast, colour palette, and texture amplitude. AdaIN then replaces these statistics with new ones derived from . Different layers control different aspects of the image:
Low-resolution layers ( to ): control coarse features such as pose, face shape, presence of accessories (glasses, hats).
Mid-resolution layers ( to ): control facial features, hairstyle, eyes open/closed.
High-resolution layers ( to ): control colour scheme, micro-structure, skin texture, background details.
Style Mixing
Definition 9 (Style Mixing Regularisation).
During training, two latent codes are sampled and mapped to , . A random crossover point is chosen, and the generator uses for layers and for layers . This prevents the network from assuming that adjacent layers are correlated, encouraging each layer to independently control its corresponding level of detail.
Example 3 (Style Mixing Matrix).
Consider two source latent codes and that produce face images and respectively. Injecting at coarse layers and at fine layers produces a face with the pose and structure of but the colour and texture of . Reversing the assignment gives 's structure with 's style. This decomposition is possible only because AdaIN applies style at each resolution independently.
The Truncation Trick
Definition 10 (Truncation Trick).
Let be the mean of the distribution. The truncated style code is (Truncation) where is the truncation parameter. At (no truncation), the full diversity of the model is used. At , every image is the βaverage faceβ . Intermediate values trade diversity for quality.
Proposition 6 (Truncation as Variance Reduction).
Proof.
. Since scaling a Gaussian by scales the covariance by :
Insight.
StyleGAN's key insight is that style and content are best controlled at different resolutions. By injecting the latent code through AdaIN at every layer, rather than only at the input, StyleGAN gains fine-grained control: changing at coarse layers alters pose and shape, while changing it at fine layers alters colour and micro-texture. This per-layer control is what makes style mixing and the truncation trick possible.
Semantic Image Synthesis: SPADE
In semantic image synthesis, the goal is to generate a photorealistic image from a semantic label map: a spatial map where each pixel is assigned a semantic class (sky, road, building, tree, etc.). GauGAN [8] solves this problem with Spatially-Adaptive Normalisation (SPADE), a normalisation layer that modulates features spatially based on the semantic layout.
Why BatchNorm Fails for Semantic Synthesis
Proposition 7 (BatchNorm Destroys Spatial Information).
Standard batch normalisation computes channel-wise statistics over the entire spatial extent and normalises: The affine parameters are spatially uniform: the same scale and shift applied everywhere. When the input is a semantic map (encoded, e.g., as a one-hot volume), the normalisation step subtracts the global mean and divides by the global standard deviation, washing out the spatial layout of the semantic classes. After a few BN layers, the generator effectively loses the input segmentation map.
Spatially-Adaptive Normalisation
Definition 11 (SPADE Layer).
Let be the activation tensor at some generator layer and be the input semantic map (resized to if needed). The SPADE layer computes: (Spade) where:
and are the usual channel-wise statistics,
are spatially-varying modulation parameters produced by small convolutional networks applied to the semantic map : (Modulation) sharing the first convolution and then branching into separate convolutions for and .
The crucial difference from BatchNorm and AdaIN is that and vary with spatial position , determined by the semantic label at that location. A pixel labelled βskyβ receives different modulation parameters than a pixel labelled βroadβ, allowing the generator to synthesise appropriate textures in each region.
Theorem 2 (SPADE Generalises Conditional BatchNorm and AdaIN).
The following normalisation layers are special cases of SPADE:
Batch Normalisation: set and (spatially constant, independent of ).
Conditional BatchNorm: set and where is a class label (spatially constant, dependent on a global condition).
AdaIN: set and where are derived from a style vector (spatially constant, per-channel modulation from a style code).
SPADE is strictly more expressive because the modulation parameters are functions of both the channel and the spatial location , through the semantic map .
Proof.
In each case, we verify that the restricted parameter form satisfies :
Case 1 (BN): Let and for all . Then reduces to standard BN with learned affine parameters.
Case 2 (Conditional BN): Let and , where is a global class label. These are spatially constant but condition-dependent, matching Conditional BN.
Case 3 (AdaIN): Let and , where is a style vector. The normalisation uses instance statistics (per-example rather than per-batch), and the affine parameters depend on but not on , recovering AdaIN .
In all three cases, and are constrained to be spatially uniform. SPADE allows them to vary with through the semantic map, providing a strictly richer parameterisation.
Example 4 (Cityscapes Synthesis).
The Cityscapes dataset [2] contains paired data: semantic label maps of urban scenes and corresponding photographs. Using SPADE, a generator trained on this data can take a new label map, perhaps user-drawn, and produce a photorealistic street scene. Moving a βtreeβ label to a different location in the map causes a tree to appear in the corresponding position in the generated image, demonstrating that SPADE truly respects the spatial layout. Evaluation on Cityscapes shows significant improvements in FID and segmentation accuracy over Pix2Pix and Pix2PixHD [3].
Insight.
The evolution of normalisation in GAN generators follows a clear trajectory of increasing expressiveness: Each step adds a new axis of modulation, giving the generator finer control over what it produces and where.
Scaling and the Bigger Picture
The architectures above were designed for resolutions up to . Scaling GANs further, to text-conditioned generation at arbitrary resolutions, requires additional innovations.
GigaGAN
GigaGAN [9] scales GAN-based text-to-image synthesis to 512px base resolution with a 1-billion-parameter generator, rivalling diffusion models in quality while retaining the fast single-pass inference speed of GANs. Key innovations include:
Sample-adaptive kernel selection: convolutional kernels are dynamically chosen based on the text embedding, giving each text prompt a customised filter bank.
Interleaved attention and convolution: self-attention layers (for global coherence) alternate with convolution layers (for local texture), balancing computational cost and receptive field.
Multi-scale training: the generator produces images at multiple resolutions simultaneously, with separate discriminators at each scale.
Architecture Comparison
| Method | Conditioning | Paired? | Max Res. | Key Innovation |
| cGAN | Label / image / text | Varies | Varies | Condition fed to and |
| Pix2Pix | Input image | Yes | PatchGAN + loss | |
| CycleGAN | None (unpaired) | No | Cycle-consistency loss | |
| ProGAN | None | N/A | Progressive growing + fade-in | |
| StyleGAN | None (+ truncation) | N/A | Mapping net + AdaIN | |
| SPADE | Semantic map | Yes | Spatially-adaptive norm | |
| GigaGAN | Text embedding | N/A | Adaptive kernels + attention |
Remark 5 (GANs and Diffusion Models).
Since 2021, diffusion models have largely overtaken GANs for image generation benchmarks, offering better mode coverage and training stability. However, GANs retain key advantages: single-pass generation (no iterative denoising), real-time inference, and a mature toolkit for image editing (latent space interpolation, style mixing). Many modern systems combine both: a diffusion model for high-quality generation with a GAN-based refiner for speed.
Key Idea.
Every GAN architecture in this chapter injects structure through one of four mechanisms:
Conditioning: cGAN, Pix2Pix, GigaGAN feed side information to guide generation.
Cycle-consistency: CycleGAN constrains two mappings to invert each other, supplying the structure that paired data would otherwise provide.
Normalisation: StyleGAN (AdaIN) and SPADE modulate feature statistics to control style and spatial layout.
Curriculum: ProGAN trains progressively from low to high resolution.
Understanding which mechanism a new architecture uses is the fastest way to categorise it and predict its strengths and limitations.
Exercises
Exercise 1 (Optimal cGAN Discriminator).
Exercise 2 ( vs. Reconstruction).
Consider a 1D pixel with posterior distribution for . Compute:
The minimiser of (posterior median).
The minimiser of (posterior mean).
Explain why the minimiser produces a βblurryβ result that is not a valid sample, while either minimiser ( or ) is a valid sample.
Exercise 3 (PatchGAN Receptive Field).
A PatchGAN discriminator uses convolutional layers, each with kernel size and stride . Show that the receptive field at the output satisfies Verify this formula for the 3-layer architecture in Example Example 2 with , .
Exercise 4 (Cycle-Consistency and Bijectivity).
Give a concrete example of two mappings that satisfy the forward cycle for all but do not satisfy the backward cycle for all . What kind of mapping is in this case (injective, surjective, or bijective)? Why does CycleGAN need both cycles?
Exercise 5 (CycleGAN Mode Collapse).
Suppose maps every image in to the same image . Show that the cycle-consistency loss cannot be zero unless maps to every simultaneously (which is impossible for a deterministic function). Conclude that cycle-consistency prevents this form of mode collapse.
Exercise 6 (Progressive Fade-In Analysis).
Consider the fade-in formula . At the start of the transition (), the new layers have random weights. Argue that the gradient of the training loss with respect to the new layer parameters is scaled by , so the new layers receive very small gradients initially. Why is this beneficial for training stability?
Exercise 7 (AdaIN Feature Statistics).
Let be a feature map with mean and standard deviation . After applying , show that the output has mean and standard deviation . Interpret: AdaIN replaces the feature statistics with the style-derived values .
Exercise 8 (Mapping Network Disentanglement).
Consider a simple 2D example where and the data manifold is an L-shaped region: .
Explain why a linear mapping cannot map the Gaussian onto this L-shaped region without βwastingβ probability mass. Argue that a nonlinear mapping network can learn to warp the Gaussian to avoid the forbidden region, leading to better disentanglement.
Exercise 9 (Truncation and FID).
The truncation trick trades diversity for quality. Explain qualitatively why:
Decreasing improves the βqualityβ component of FID (generated samples are closer to real samples).
Decreasing worsens the βdiversityβ component of FID (the generated distribution has lower variance than the real distribution).
There exists an optimal that minimises FID.
Exercise 10 (SPADE vs. AdaIN).
Consider a feature map with a semantic map where the top row is βskyβ and the bottom row is βgrassβ. Write out explicitly the output of:
AdaIN with parameters derived from a global style vector.
SPADE with parameters and derived from .
Explain why SPADE can produce different textures for sky and grass pixels while AdaIN cannot.
Exercise 11 (Conditional Mode Collapse).
In a conditional GAN, mode collapse can manifest as the generator producing the same output for all noise vectors given a fixed condition , while still producing diverse outputs across different conditions. Define the intra-class LPIPS score as where is the perceptual distance. Explain why indicates conditional mode collapse for class , and propose a training diagnostic based on monitoring during training.
Exercise 12 (Unifying Framework).
Consider the general conditional generation framework . Show that:
Pix2Pix uses with paired data.
CycleGAN replaces the single reconstruction loss with the cycle-consistency loss , enabling unpaired training.
When , the framework reduces to the vanilla (conditional) GAN, which has no reconstruction guarantee.
When , the adversarial loss becomes irrelevant and the generator minimises reconstruction error alone, producing blurry outputs (the MMSE solution).
Conclude that controls the reconstructionβrealism trade-off, analogous to the PSNRβperceptual quality trade-off in Chapter 12.
References
-
Progressive Growing of GANs for Improved Quality, Stability, and Variation
BibTeX
@inproceedings{karras2018progressive, title={Progressive Growing of {GAN}s for Improved Quality, Stability, and Variation}, author={Karras, Tero and Aila, Timo and Laine, Samuli and Lehtinen, Jaakko}, booktitle={International Conference on Learning Representations}, year={2018} }Conference paper
-
The Cityscapes Dataset for Semantic Urban Scene Understanding
BibTeX
@inproceedings{Cordts2016Cityscapes, title={The Cityscapes Dataset for Semantic Urban Scene Understanding}, author={Cordts, Marius and Omran, Mohamed and Ramos, Sebastian and Rehfeld, Timo and Enzweiler, Markus and Benenson, Rodrigo and Franke, Uwe and Roth, Stefan and Schiele, Bernt}, booktitle={Proc. of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR)}, year={2016} }Conference paper
-
High-Resolution Image Synthesis and Semantic Manipulation with Conditional GANs
BibTeX
@inproceedings{wang2018highresolution, title={High-Resolution Image Synthesis and Semantic Manipulation with Conditional {GAN}s}, author={Wang, Ting-Chun and Liu, Ming-Yu and Zhu, Jun-Yan and Tao, Andrew and Kautz, Jan and Catanzaro, Bryan}, booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition}, year={2018} }Conference paper
-
Conditional Generative Adversarial Nets
BibTeX
@misc{mirza2014conditional, title={Conditional Generative Adversarial Nets}, author={Mehdi Mirza and Simon Osindero}, year={2014}, eprint={1411.1784}, archivePrefix={arXiv}, primaryClass={cs.LG} }Reference
-
Image-to-image translation with conditional adversarial networks
BibTeX
@inproceedings{isola2017image, title={Image-to-image translation with conditional adversarial networks}, author={Isola, Phillip and Zhu, Jun-Yan and Zhou, Tinghui and Efros, Alexei A}, booktitle={Proceedings of the IEEE conference on computer vision and pattern recognition}, pages={1125--1134}, year={2017} }Conference paper
-
Unpaired Image-to-Image Translation Using Cycle-Consistent Adversarial Networks
BibTeX
@inproceedings{zhu2017unpaired, title = {Unpaired Image-to-Image Translation Using Cycle-Consistent Adversarial Networks}, author = {Zhu, Jun-Yan and Park, Taesung and Isola, Phillip and Efros, Alexei A.}, booktitle = {IEEE International Conference on Computer Vision}, pages = {2223--2232}, year = {2017} }Conference paper
-
A Style-Based Generator Architecture for Generative Adversarial Networks
BibTeX
@inproceedings{karras2019style, title={A Style-Based Generator Architecture for Generative Adversarial Networks}, author={Karras, Tero and Laine, Samuli and Aila, Timo}, booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition}, pages={4401--4410}, year={2019} }Conference paper
-
Semantic Image Synthesis with Spatially-Adaptive Normalization
BibTeX
@inproceedings{park2019semantic, title={Semantic Image Synthesis with Spatially-Adaptive Normalization}, author={Park, Taesung and Liu, Ming-Yu and Wang, Ting-Chun and Zhu, Jun-Yan}, booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition}, year={2019} }Conference paper
-
Scaling up GANs for Text-to-Image Synthesis
BibTeX
@inproceedings{kang2023scaling, title={Scaling up {GAN}s for Text-to-Image Synthesis}, author={Kang, Minguk and Zhu, Jun-Yan and Zhang, Richard and Park, Jaesik and Shechtman, Eli and Paris, Sylvain and Park, Taesung}, booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition}, year={2023} }Conference paper