GAT: Resurrecting GANs through Pure Transformer Scaling

Scalable GANs with Transformers

2025-09-29
Sangeek Hyun, MinKyu Lee, Jae-Pil Heo
Summary
Problem
Method
Results
Takeaways
Abstract

The paper introduces Generative Adversarial Transformers (GAT), a pure transformer-based GAN framework that operates in a compact VAE latent space. By addressing scaling inefficiencies and training instabilities, GAT-XL achieves state-of-the-art single-step class-conditional generation on ImageNet-256 with an FID of 2.18, requiring 4x fewer training epochs than competitive diffusion-based or GAN baselines.

TL;DR

Generative Adversarial Transformers (GAT) successfully scale GANs up to XL sizes by combining a pure ViT-style architecture with the VAE latent space. By solving the twin problems of early-layer collapse and scale-dependent instability, GAT achieves SOTA single-step performance (FID 2.18 on ImageNet-256) with 4x higher training efficiency than traditional baselines.

The Scaling Paradox: Why GANs Remained "Small"

While the industry moved toward Transformer-based Diffusion (DiT) and Autoregressive (VAR) models that scale predictably with compute, GANs were left behind. Prior attempts at large-scale GANs often relied on "task-specific hacks" rather than genuine architectural scaling. The authors identify two fundamental blockers:

  1. Layer Inactivity: In deep GANs, the early layers of the generator often become redundant, serving as near-identity mappings.
  2. Training Speed Asymmetry: As models get wider, the functional update magnitude per step increases, causing the adversarial game to break (divergence).

Methodology: The GAT Blueprint

The GAT framework utilizes a pure Vision Transformer (ViT) backbone for both the Generator (G) and Discriminator (D), operating within the latent space of a pre-trained VAE.

1. Activating Early Layers (MNG)

To ensure every block earns its keep, authors introduced Multi-level Noise-perturbed image Guidance (MNG). The generator produces auxiliary outputs at different stages. Earlier stages are supervised by matching real data perturbed by heavy noise, while later stages handle clean data. This creates a "coarse-to-fine" learning trajectory across the model's depth.

GAT Architecture

2. The Width-Aware Learning Rate Rule

To stabilize training as models grow, authors proposed a simple yet effective scaling rule: By decreasing the learning rate () inversely to the channel width (), GAT maintains a consistent "functional update magnitude," preventing the discriminator or generator from drifting too rapidly.

Experimental Results: The Return of the King

GAT demonstrates a clear power-law relationship between compute and quality. In Head-to-head comparisons, the GAT-XL model outperforms established titans like StyleGAN-XL and GigaGAN.

Compute vs FID Scaling

  • Data Efficiency: Reaches SOTA FID (2.18) in only 60 epochs.
  • Inference Speed: Being a single-step (1-NFE) model, GAT-XL is ~200x faster than a 250-step DiT model.
  • Versatility: Experiments show it works for ImageNet, FFHQ, and even text-to-image (MS-COCO) tasks.

A Look Behind the Layers

Ablation studies confirm the necessity of MNG. Without it, early layers show near-zero perceptual contribution (measured by LPIPS). With MNG, the responsibility for image synthesis is distributed more uniformly across the network.

Effective Layer Utilization Comparison

Critical Insights & Future Work

The success of GAT highlights that the Discriminator's feature quality is the primary bottleneck for GAN scaling. By aligning the D features with Vision Foundation Models (e.g., DINOv2), the generator receives more informative gradients.

Limitations: While training is data-efficient, the per-iteration cost is higher than pure diffusion due to the D-updates. Future research into "Projected GAN" styles (using frozen pre-trained D-networks) could further slash training times.

In conclusion, GAT provides a robust roadmap for the next generation of single-step, high-fidelity generative models, proving that with the right scaling laws, adversarial learning is far from dead.

Find Similar Papers

Try Our Examples

  • Search for recent papers that apply intermediate supervision or noise-perturbed guidance to transformer-based generative models to improve layer utilization.
  • What are the theoretical foundations for learning rate scaling laws in relation to width and depth in Generative Adversarial Networks compared to standard Transformers?
  • Explore research that integrates Vision Foundation Model (VFM) representation alignment into the discriminator of other one-step generative frameworks such as Flow Matching or Consistency Models.
Contents
GAT: Resurrecting GANs through Pure Transformer Scaling
1. TL;DR
2. The Scaling Paradox: Why GANs Remained "Small"
3. Methodology: The GAT Blueprint
3.1. 1. Activating Early Layers (MNG)
3.2. 2. The Width-Aware Learning Rate Rule
4. Experimental Results: The Return of the King
5. A Look Behind the Layers
6. Critical Insights & Future Work