TL;DR
Lens achieves competitive text-to-image generation with a 3.8B parameter model using only ~19.3% of training compute versus larger models (6B-80B). Key innovations include dense captions, FLUX.

论文原始摘要

We introduce Lens, a 3.8B-parameter T2I model that achieves performance competitive with, and in several cases surpassing, state-of-the-art models with more than 6B parameters across various benchmarks, while requiring significantly less training compute. For example, Lens requires only about 19.3% of the training compute used by Z-Image. The training efficiency of Lens stems from two key strategies beyond its compact model size. First, we maximize data information density per training batch by (i) training on Lens-800M, a dataset of 800M densely captioned image-text pairs whose captions are generated by GPT-4.1 and contain approximately 109 words on average, providing richer semantic supervision than conventional short captions, and (ii) constructing each batch from images with multiple resolutions and diverse aspect ratios, thereby enlarging the effective visual coverage of each optimization step. Second, we improve convergence speed through careful architectural choices, including adopting a semantic VAE that provides better latent representations and employing a strong language encoder that accelerates optimization while enabling multilingual generalization from English-only training data. After pre-training, we apply RL with taxonomy-driven prompts (Lens-RL-8K) and structured reward rubrics to suppress artifacts and improve visual quality, a reasoner module with training-free system prompt search to better align user requests with the model, and distillation-based acceleration for 4-step inference. Through efficient training and systematic optimization, Lens generalizes to arbitrary aspect ratios from 1:2 to 2:1 and resolutions up to 1440^2, and supports prompts in several commonly used languages. Thanks to its compact size, Lens generates a 1024^2 image in 3.15 seconds on a single NVIDIA H100 GPU, while its distilled turbo version performs 4-step generation in 0.84 seconds.

Paper Collector 中文速览

3.8B参数T2I模型,通过高效训练策略超越6B参数模型

方法概述

构建800M高密度标注数据集,采用多分辨率和多样化长宽比批处理提升视觉覆盖;使用语义VAE和强语言编码器加速收敛;通过RLHF、推理模块和蒸馏技术优化生成质量和推理速度。

核心贡献

提出Lens模型,通过高密度数据标注、多分辨率批处理、语义VAE和RLHF优化,以3.8B参数实现超越6B参数模型的性能,训练计算量仅需19.3%。

原始来源与核验范围

核验仅覆盖论文正文中的主张、证据片段和参考文献关系。NGJOO 未独立运行作者代码、重做实验或验证真实部署效果;页面中的可复现性分数是文档完整度评估,不是复现实验结果。

26
已证实
12
证据不足
4
无法验证
N/A
可复现性
置信度
74%

核心问题

How can foundational text-to-image models achieve competitive performance with state-of-the-art larger models while significantly reducing training computational costs?

核心方法

Lens optimizes three efficiency factors: model size (3.8B parameters), data information density (800M densely captioned images with avg. 109 words via GPT-4.1), and convergence speed (FLUX.2 VAE, GPT-OSS encoder, multi-resolution training). The model undergoes RL post-training with Lens-RL-8K (8,406 prompts) and is distilled into Lens-Turbo for 4-step inference.

方法组件

论点验证

已证实 (95%) we introduce Lens, a foundational T2I model designed for efficient training
The paper provides comprehensive details about Lens: architecture (p_17), training data (p_13-p_14), training procedure, and benchmark results (Table 2, Figure 2). The model is fully specified and experimentally validated across multiple benchmarks (
已证实 (90%) We refer to this pre-training dataset as Lens-800M. The final pre-training dataset contains approximately 800M high-quality images
The paper describes a detailed 9-stage data cleaning pipeline (p_13) and states the final dataset contains approximately 800M high-quality images. The pipeline is fully specified with specific thresholds and methods.
已证实 (90%) Lens-RL-8K is a prompt dataset designed for RL-based post-training, consisting of 8,406 prompts that cover a broad range of T2I generation scenarios
The paper explicitly states Lens-RL-8K consists of 8,406 prompts (p_21, p_22) and describes the taxonomy covering Human, Object, Animal, Plant, Scene, Food, Event, Fictional World, Text, and UI categories.
已证实 (85%) We propose a taxonomy-driven construction pipeline for building the Lens-RL-8K prompt set for RL training
The taxonomy-driven pipeline is described in detail (p_22-p_24): category set definition, sub-category breakdown, item set construction (8,406 items), description dimensions, and prompt generation process using GPT-4.1.
已证实 (85%) we equip Lens with a reasoner module that can be instantiated with different LLMs. The reasoner converts ambiguous or underspecified user requests into detailed prompts aligned with the training-caption distribution
证据不足 (50%) We further introduce a training-free system prompt search strategy to optimize these guidelines, enabling the reasoner to generate prompts that better align with the T2I model
已证实 (85%) we distill Lens-RL into Lens-Turbo, a 4-step generator distilled from a curated, well-balanced image-caption dataset
The distillation process is described in p_25 and detailed in Appendix D.2 (p_67-p_76). The 100K curated dataset is described in p_67, and the DMD2/decoupled-DMD/SenseFlow combination with R1 regularization is specified.
证据不足 (50%) training-time efficiency is jointly determined by three key factors: (1) model size, which directly affects the computational cost of each training step; (2) data information density per training batch, which determines how much useful supervision the model can extract from each update; and (3) convergence speed, which determines the overall number of training iterations
已证实 (85%) Lens (3.8B) attains competitive or superior results while using only approximately 19.3% of its training compute. Specifically, Lens requires 192K A100 GPU hours (312 TFLOPS, BF16), whereas Z-Image requires 314K H800 GPU hours (989.5 TFLOPS, BF16)
证据不足 (40%) the model generalizes well to unseen aspect ratios (e.g., 5:4 and 6:7) and to resolutions up to 1440²
证据不足 (55%) We find that stronger language encoders not only accelerate optimization convergence but also improve multilingual generalization. Specifically, although the model is trained only on English image-text pairs, a strong language encoder enables robust inference-time generalization to other languages, such as Chinese and French
证据不足 (45%) A key finding is that RL data must be sufficiently diverse and cover the original training distribution to avoid performance degradation on certain input types
Stated in p_10 and p_21 as a 'key finding', but the paper does not present controlled experiments comparing diverse vs. non-diverse RL data. No ablation showing performance degradation with reduced diversity is provided.
证据不足 (50%) Experiments show that post-training on Lens-RL-8K significantly improves generation performance across a broad range of scenarios
Stated in p_10, but the paper does not provide clear before/after quantitative comparison showing improvement from RL post-training. No table or figure directly compares Lens-Base vs. Lens-RL performance.
已证实 (90%) by default, Lens generates a 1024² image in 3.15 seconds on a single NVIDIA H100 GPU using 20 denoising steps, while Lens-Turbo, a 4-step distilled variant, further reduces the generation time to 0.84 seconds
Specific timing measurements are provided in p_12: Lens generates 1024² image in 3.15 seconds on H100 with 20 steps; Lens-Turbo reduces to 0.84 seconds with 4 steps. These are concrete, verifiable numbers.
已证实 (80%) As shown in Figure 4, training with dense captions achieves better generation quality than the other variants, owing to improved data utilization efficiency
A controlled ablation study is described in p_14 comparing Brief, Detailed, and Mixed caption strategies on Lens-130M with Lens-Toy models. Results are shown in Figure 4 demonstrating dense captions achieve better GenEval performance.
证据不足 (45%) Dense caption supervision improves the data information density of each training batch, leading to better data utilization and higher training efficiency
已证实 (80%) As shown in Figure 5, FLUX.2's VAE achieves the best generation performance while also accelerating model convergence
The VAE comparison is described in p_16 with results in Figure 5. The paper directly evaluated VAEs in the T2I pipeline using Lens-Toy models on Lens-130M, comparing FLUX.1, SD3, FLUX.2, and VTP VAEs.
证据不足 (40%) it can generate images with arbitrary aspect ratios ranging from 1:2 to 2:1 and image areas up to 1440², even though training does not include resolutions between 1024² and 1440², nor aspect ratios outside the predefined bucket set
证据不足 (45%) Mixed-resolution training enables strong resolution generalization at inference time, allowing the model to generate images at unseen sizes and diverse aspect ratios
证据不足 (40%) A broad and well-balanced RL prompt set enables the model to improve across diverse generation scenarios, whereas reduced or biased prompt coverage limits generalization

... 共 42 个论点

可复现性评估

较低可复现性 (0%)

缺失的复现细节

局限与证据边界

本分析由 PDF 阅读助手 自动生成,仅供参考,不构成学术评审意见。验证结论和可复现性评估基于论文文本自动分析,可能存在偏差。原始论文请参阅 arXiv

分析时间:2026-05-27T13:31:32+00:00 · 数据来源:Paper Collector