TL;DR
LocateAnything introduces Parallel Box Decoding (PBD) to overcome serialization bottlenecks in vision-language grounding. By predicting bounding boxes as atomic units in parallel, it achieves up to 2.5× higher throughput while improving localization quality (+3.8% F1 on LVIS, +1.8% on COCO).

论文原始摘要

Vision-language models (VLMs) commonly formulate visual grounding and detection as a coordinate-token generation problem, serializing each 2D box into multiple 1D tokens that are learned and decoded largely independently. This token-by-token decoding mismatches the coupled structure of box geometry and creates a practical inference bottleneck due to strictly sequential generation. We introduce LocateAnything, a unified generative grounding and detection framework based on Parallel Box Decoding (PBD). By decoding geometric elements such as bounding boxes and points as atomic units in a single step, LocateAnything preserves intra-box geometric coherence and unlocks substantial parallelism. We show that PBD improves both decoding throughput and localization accuracy. We further develop a scalable data engine and curate LocateAnything-Data, a large-scale dataset with more than 138 million training samples, substantially increasing data diversity for high-precision localization. Extensive evaluations show that LocateAnything advances the speed-accuracy frontier, achieving significantly higher decoding throughput while improving high-IoU localization quality across diverse benchmarks. The results highlight the complementary benefits of Parallel Box Decoding and large-scale training data in enabling efficient and precise unified visual grounding and detection.

Paper Collector 中文速览

提出并行框解码,实现高效统一视觉定位

方法概述

将边界框和点等几何元素作为原子单元单步解码,替代原有的逐token串行生成,保持几何一致性并提升并行度,配合大规模数据训练实现高效精准定位

核心贡献

提出并行框解码方法,构建1.38亿样本数据集,在速度和精度上均优于现有方法

原始来源与核验范围

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

38
已证实
1
证据不足
0
无法验证
N/A
可复现性
置信度
87%

核心问题

How can vision-language models achieve both high-quality and low-latency grounding by overcoming the serialization bottleneck of next-token prediction approaches that convert 2D geometric objects into 1D token streams?

核心方法

The authors propose Parallel Box Decoding (PBD), which treats each bounding box as an atomic unit and predicts full coordinate sets in one parallel step rather than token-by-token. A dual-formulation training strategy jointly optimizes NTP sequences for causal reasoning and block-wise MTP for box-aligned predictions, with three inference modes (Fast, Slow, Hybrid) to balance throughput and accuracy. The framework is trained on LocateAnything-Data, a curated dataset with 12M images and 138M queries.

方法组件

论点验证

已证实 (85%) We introduce LocateAnything, an early exploration of applying multi-token prediction to VLM-based detection/grounding via Parallel Box Decoding, performing box-aligned decoding to improve throughput and accuracy.
证据不足 (60%) We present a Hybrid decoding policy that detects unreliable parallel blocks and performs localized NTP re-decoding only for the problematic block, reducing worst-case failures while retaining most speed gains.
已证实 (90%) We propose LocateAnything, a unified framework for VLM-based visual detection and grounding built upon Parallel Box Decoding (PBD).
已证实 (90%) We curate LocateAnything-Data, a large-scale, multi-domain dataset containing 12M unique images and 138M natural language queries.
The paper provides explicit dataset statistics in p_31: 'the dataset contains 12M unique images and 138M natural language queries.' Additional details are provided in Table 10 and Fig. 6 showing domain breakdowns.
已证实 (90%) During training, LocateAnything treats each bounding box (or point) as an atomic unit and learns to predict the full coordinate set (x1, y1, x2, y2) in one parallel step.
The design choice is fully specified in p_5 and p_15. The paper describes treating bounding boxes as atomic units with block size L=6, predicting full coordinate sets in parallel.
已证实 (90%) We introduce a dual-formulation training strategy that jointly optimizes two aligned representations: the NTP sequence to preserve the causal reasoning ability, and the block-wise MTP formulation for box-aligned predictions.
The dual-formulation training strategy is fully specified in p_16-p_17, including the concatenated input sequence construction and the joint loss optimization.
已证实 (95%) Each block bi acts as an atomic unit of constant length L = 6, accommodating a bounding box and two structural tokens (e.g., and ).
The specific parameter L=6 is stated in p_15, with explanation that it accommodates 4 coordinate tokens plus 2 structural tokens.
已证实 (90%) We define four functional block types: (1) Semantic Block, (2) Box Block, (3) Negative Block, and (4) End Block.
The four block types are defined in p_15 with clear descriptions of each type's function.
已证实 (90%) The shared context and NTP stream use causal attention, the MTP blocks follow a block-causal pattern across blocks, and tokens within the same block share bidirectional attention.
The attention mask design is fully specified in p_18-p_21 and Fig. 4, with clear description of causal attention for NTP, block-causal pattern across MTP blocks, and bidirectional intra-block attention.
已证实 (90%) We propose three on-demand inference modes to balance throughput and spatial robustness: (1) Slow Mode, (2) Fast Mode, and (3) Hybrid Mode.
The three inference modes are described in detail in p_25-p_28, with clear specifications of each mode's behavior and use cases.
已证实 (90%) An ambiguity trigger is activated if two conditions are met simultaneously: (1) the top-1 coordinate token's probability is below 0.7, and (2) the max-min difference among the top-5 coordinate tokens exceeds 80 within the [0, 1000] normalized space.
The specific threshold values (0.7 probability, 80 max-min difference) are stated in p_24 as the conditions for triggering ambiguity detection.
已证实 (95%) We employ nucleus sampling with a temperature of 0.7 and top-p of 0.9 to balance diversity and precision.
The specific sampling parameters (temperature=0.7, top-p=0.9) are stated in p_55.
已证实 (95%) A repetition penalty of 1.1 is applied to discourage duplicate predictions.
The specific repetition penalty value (1.1) is stated in p_56.
已证实 (95%) The block size for MTP generation is set to 6 (i.e., n future = 6), meaning each parallel decoding step predicts up to 6 tokens simultaneously.
The specific block size parameter (6) is stated in p_56.
已证实 (85%) We adopt an online stream packing strategy that dynamically assembles multiple variable-length samples into a single, densely packed sequence of a target budget (e.g., 36,864 tokens).
The stream packing strategy is described in detail in p_51, including the target budget (36,864 tokens) and the three core mechanisms (Weighted Sampling, Best-Fit Buffering, Big-Rocks-First Seeding).
已证实 (85%) We leverage MagiAttention, a distributed attention framework designed for ultra-long contexts with heterogeneous masks.
MagiAttention is described in p_52-p_53 as the framework for handling heterogeneous attention masks in the dual-formulation training.
已证实 (85%) We explicitly construct negative samples across domains to mitigate hallucination behaviors, where the model predicts bounding boxes even when the query is unrelated to the image.
The negative sample construction is described in p_61, with the rationale of mitigating hallucination behaviors.
已证实 (85%) We take X-Y Corner Order as default in dataset construction, which yields the highest F1-score among the four spatial sorting strategies investigated.
The X-Y Corner Order is justified by ablation results in p_44 and Fig. 7 (left), showing it yields the highest F1-score among the four spatial sorting strategies tested.
已证实 (85%) LocateAnything improves the mean F1 by +3.8% on LVIS and +1.8% on COCO compared to Rex-Omni, despite sharing an identical model size.
The specific improvement numbers (+3.8% on LVIS, +1.8% on COCO) are stated in p_42, attributed to Table 1 results comparing to Rex-Omni with identical model size.
已证实 (80%) LocateAnything achieves up to 2.5× higher decoding throughput while improving localization quality.
The throughput improvement is supported by Fig. 7 (right) showing 2× to 6× speedup, and Table 12 showing BPS values. The 'up to 2.5×' claim in p_8 is within the demonstrated range.

... 共 39 个论点

可复现性评估

较低可复现性 (0%)

缺失的复现细节

局限与证据边界

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

分析时间:2026-05-28T13:12:38+00:00 · 数据来源:Paper Collector