Papers › Autoregressive Model Beats Diffusion: Llama for Scalable Image Generation

Autoregressive Model Beats Diffusion: Llama for Scalable Image Generation

10 Jun 2024arXiv:2406.06525archive 2025-07-28

Peize Sun, Yi Jiang, Shoufa Chen, Shilong Zhang, Bingyue Peng, Ping Luo, Zehuan Yuan

We introduce LlamaGen, a new family of image generation models that apply original ``next-token prediction'' paradigm of large language models to visual generation domain. It is an affirmative answer to whether vanilla autoregressive models, e.g., Llama, without inductive biases on visual signals can achieve state-of-the-art image generation performance if scaling properly. We reexamine design spaces of image tokenizers, scalability properties of image generation models, and their training data quality. The outcome of this exploration consists of: (1) An image tokenizer with downsample ratio of 16, reconstruction quality of 0.94 rFID and codebook usage of 97% on ImageNet benchmark. (2) A series of class-conditional image generation models ranging from 111M to 3.1B parameters, achieving 2.18 FID on ImageNet 256x256 benchmarks, outperforming the popular diffusion models such as LDM, DiT. (3) A text-conditional image generation model with 775M parameters, from two-stage training on LAION-COCO and high aesthetics quality images, demonstrating competitive performance of visual quality and text alignment. (4) We verify the effectiveness of LLM serving frameworks in optimizing the inference speed of image generation models and achieve 326% - 414% speedup. We release all models and codes to facilitate open-source community of visual generation and multimodal foundation models.

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2406.06525")

Code

Syntology Ran 6 of 15 code samples harvested from 1 repository linked to this paper; 9 have no recorded run. Of those that ran: 2 ran · honoured contract; 1 ran · our draft was wrong; 3 ran with no contract checked.

By repository: official repository: 15 samples from 1 repository, 6 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

foundationvision/llamagen officialmentioned in papermentioned on GitHubpytorchMIT report
0606zt/panollama mentioned on GitHubpytorch report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

15 samples harvested; 6 ran; 2 honoured the contract we drafted; 9 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

2ran · honoured contract
1ran · our draft was wrong
3ran
9unverified

Licence: 0 of the 15 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from foundationvision/llamagen. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

build_t2i foundationvision/llamagen/dataset/t2i.py official repository ran MIT (permissive) · 02cb09299c18ee5d · report
build_t2i_code foundationvision/llamagen/dataset/t2i.py official repository ran MIT (permissive) · ff9ed4675cb307aa · report
build_t2i_image foundationvision/llamagen/dataset/t2i.py official repository ran MIT (permissive) · 090d7b6b1260114e · report
center_crop_arr foundationvision/llamagen/dataset/augmentation.py official repository ran · our draft was wrong MIT (permissive) · 1712a07966b542ee · report
find_multiple foundationvision/llamagen/autoregressive/models/gpt.py official repository ran · honoured contract fingerprinted MIT (permissive) · f6ff7671338c9c92 · report
precompute_freqs_cis_2d foundationvision/llamagen/autoregressive/models/gpt.py official repository ran · honoured contract MIT (permissive) · 7f53b2cdcd16fad9 · report
build_coco foundationvision/llamagen/dataset/coco.py official repository unverified MIT (permissive) · a5dc3fcd09ebc843 · report
build_imagenet foundationvision/llamagen/dataset/imagenet.py official repository unverified MIT (permissive) · 5cceaa9d0edbce06 · report
build_imagenet_code foundationvision/llamagen/dataset/imagenet.py official repository unverified MIT (permissive) · b6635606f35f6a1a · report
build_openimage foundationvision/llamagen/dataset/openimage.py official repository unverified MIT (permissive) · 0a65aaf586d4f90b · report
logits_to_probs foundationvision/llamagen/autoregressive/models/generate.py official repository unverified MIT (permissive) · 9dac59261197935f · report
precompute_freqs_cis foundationvision/llamagen/autoregressive/models/gpt.py official repository unverified MIT (permissive) · 0f0ff4e443413018 · report
random_crop_arr foundationvision/llamagen/dataset/augmentation.py official repository unverified MIT (permissive) · 980fb099f82d8b84 · report
sample foundationvision/llamagen/autoregressive/models/generate.py official repository unverified MIT (permissive) · de8908ac0f302419 · report
top_k_top_p_filtering foundationvision/llamagen/autoregressive/models/generate.py official repository unverified MIT (permissive) · f2fea48028c7ae80 · report

Tasks

Conditional Image GenerationImage GenerationImage Reconstruction

Results from the paper archive 2025-07-28

TaskDatasetModelMetricValueRank at snapshotLeaderboardReport
Image Generation ImageNet 256x256 LlamaGen FID 2.18 #53 of 94 Archive leaderboard report
Image Reconstruction Ultra-High Resolution Image Reconstruction Benchmark LlamaGen (16x16) LPIPS 0.177 #4 of 6 Archive leaderboard report
Image Reconstruction Ultra-High Resolution Image Reconstruction Benchmark LlamaGen (16x16) PSNR 23.90 #4 of 6 Archive leaderboard report
Image Reconstruction Ultra-High Resolution Image Reconstruction Benchmark LlamaGen (16x16) SSIM 0.720 #4 of 6 Archive leaderboard report
Image Reconstruction Ultra-High Resolution Image Reconstruction Benchmark LlamaGen (16x16) rFID 5.59 #4 of 6 Archive leaderboard report

Ranks are positions in the archive's leaderboards as they stood at the 2025-07-28 snapshot. Results published since then are not among these rows, so a rank here is not a current standing.

Methods

DiffusionSPEED

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections