AI papers — 2026-06-13
Jump to one of 18 papers
- HYDRA-X: Native Unified Multimodal Models with Holistic Visual Tokenizers
- VIA-SD: Verification via Intra-Model Routing for Speculative Decoding
- Where, What, Why, and Importance: Structured Defect Grounding for Text-to-Image Feedback
- From 2D Grids to 1D Tokens: Reforming Shared Representations for Multimodal Image Fusion
- TreeSeeker: Tree-Structured Trial, Error, and Return in Deep Search
- Risk Under Pressure: Compute-Aware Evaluation of Adversarial Robustness in Language Models
- Rethinking Psychometric Evaluation of LLMs: When and Why Self-Reports Predict Behavior
- See What I See, Know What I Think: Dense Latent Communication Across Heterogeneous Agents
- Getting Better at Working With You: Compiling User Corrections into Runtime Enforcement for Coding Agents
- WebChallenger: A Reliable and Efficient Generalist Web Agent
- The Cold-Start Safety Gap in LLM Agents
- ToolSense: A Diagnostic Framework for Auditing Parametric Tool Knowledge in LLMs
- ArogyaSutra: A Multi-Agent Framework for Multimodal Medical Reasoning in Indic Languages
- Revisiting Articulated Parts Perception in Robot Manipulation
- A Stationary (and Therefore Compatible) Representation is All You Need
- Flash-GMM: A Memory-Efficient Kernel for Scalable Soft Clustering
- Leveraging Morphology for Historical Script Metrological Analysis
- On the Limits of LLM Adaptability: Impact of Model-Internalized Priors on Annotation Task Performance
HYDRA-X: Native Unified Multimodal Models with Holistic Visual Tokenizers →
Technical breakdown
Authors: Guozhen Zhang, Xuerui Qiu, Yutao Cui, Tianhui Song, Changlin Li, Junzhe Li, Tao Huang, Xiao Zhang, Yang Li, Jianbing Wu, Miles Yang, Zhao Zhong, Liefeng Bo, Limin Wang
Problem: Existing unified multimodal models (UMMs) lack a single tokenizer that can handle both image and video reconstruction alongside semantic understanding within one Vision Transformer.
Method: HYDRA-X introduces a holistic ViT-based tokenizer that unifies image and video tokenization using frame-level causal temporal attention for reconstruction (full spatiotemporal attention degrades it) and hierarchical temporal compression with a lightweight decompressor that upsamples under joint supervision from image and video teachers. Semantic awareness is embedded into the latent space, and image editing is performed at the latent level within the tokenizer rather than at the LLM level.
Key results:
- Image understanding (7B): AI2D 86.5, MME 2350.0, MMMU 51.5, OCRBench 84.5, MMBench 84.0, RealWorldQA 68.7, ChartQA 86.5, DocVQA 81.7, InfoVQA 59.1
- Video understanding (7B): MVBench 59.1, Video-MME (w/o subtitle) 60.0, LongVideoBench 59.5, LVBench 30.0
- Image generation (7B): GenEval Overall 0.88, WISE Overall 0.84, VBench Total 83.49
- Image editing (7B): ImgEdit-Bench Overall 4.34, GEdit-Bench G-Overall 7.17
Why it matters / caveats: HYDRA-X is the first UMM that unifies image and video tokenization within a single ViT, enabling strong performance across four task categories simultaneously. The 7B scale tested may not represent performance at larger scales, and specific video generation benchmark numbers were not reported.
VIA-SD: Verification via Intra-Model Routing for Speculative Decoding →
Technical breakdown
Authors: Yuchen Xian, Yang He, Yunqiu Xu, Yi Yang
Problem: Standard speculative decoding requires full-model verification for every drafted token, including many tokens that could be accepted by a much cheaper sub-model, wasting compute on unnecessary verification passes.
Method: VIA-SD implements a three-tier token verification pipeline: direct acceptance for high-confidence drafted tokens, slim-verifier regeneration using a routed sub-model derived from the full verifier via intra-model routing for moderate-confidence tokens, and full-model verification only for uncertain tokens. The framework is training-free and drop-in compatible with existing speculative decoding setups.
Key results:
- Rejection rates reduced by 0.10–0.22 across tasks compared to standard speculative decoding
- 10–20% wall-clock speedup over strong speculative decoding baselines
- 2.5–3x overall acceleration compared to non-drafting (standard autoregressive) decoding
Why it matters / caveats: Multi-tier speculative decoding represents a scalable paradigm for LLM inference that maintains output quality parity while reducing compute; exact model families and task benchmarks used for evaluation are not detailed in the abstract.
Where, What, Why, and Importance: Structured Defect Grounding for Text-to-Image Feedback →
Technical breakdown
Authors: Huaisong Zhang, Hao Yu, Yuxuan Zhang, Jiahe Wang, Xinrui Chen, Haoxiang Cao, Feng Lu, Wendong Zhang, Changqian Yu, Chun Yuan
Problem: Existing text-to-image failure diagnosis methods rely on pixel-field regression that cannot handle variable-cardinality defects, producing dense feedback that lacks structured instance-level grounding.
Method: Structured Defect Grounding (SDG) recasts T2I diagnosis as structured set prediction, modeling each defect as a (location, type, reason, importance) tuple. The authors build SDG-30K, a dataset of 30,000 images annotated with box-grounded defect tuples across four T2I generators, and introduce SDG-Eval as an evaluation protocol. A VLM-based detector is trained with BoxFlow-GRPO to convert spatial predictions into rewards for model alignment.
Key results:
- SDG detector outperforms leading proprietary VLMs on the structured grounding task (specific margin not stated in abstract)
- SDG-guided rewards consistently improve text-to-image alignment across tested generators
- Enables localized image refinement as a downstream capability
Why it matters / caveats: SDG provides a unified instance-level interface for diagnosing, evaluating, and enhancing generative models; specific numeric improvements over GPT-4V baselines are reported in the full paper but not in the abstract.
From 2D Grids to 1D Tokens: Reforming Shared Representations for Multimodal Image Fusion →
Technical breakdown
Authors: Yuchen Xian, Yunqiu Xu, Yang He, Yi Yang
Problem: Multimodal image fusion architectures rely exclusively on 2D feature grids, which struggle to capture global appearance factors that span the full image, leading to inconsistencies in fused outputs.
Method: The paper introduces Selective Token Editing (STE), which operates on a compact 1D token interface derived from a frozen pretrained image tokenizer. STE sparsely updates a small set of critical 1D tokens to steer global appearance coherence, while the existing 2D spatial backbone handles local structure restoration. No fusion backbone modifications or additional loss functions are required.
Key results:
- Best overall performance on four standard multimodal fusion benchmarks (specific metric values not stated in abstract)
- Consistent multi-metric improvements in both global coherence and local fidelity measures
- Accepted at ICML 2026
Why it matters / caveats: The hybrid 2D-1D representation approach generalizes across fusion tasks without retraining existing backbones; exact benchmark names and numeric scores require access to the full paper.
TreeSeeker: Tree-Structured Trial, Error, and Return in Deep Search →
Technical breakdown
Authors: Zhuofan Shi, Mingzhe Ma, Lu Wang, Fangkai Yang, Pu Zhao, Yiming Guan, Youling Huang, Wei Zhang, Qingwei Lin, Dongmei Zhang, Saravan Rajmohan
Problem: Multi-step web search agents must balance exploration of plausible directions with exploitation of promising leads, but existing methods lack mechanisms for disciplined backtracking when search branches prove unproductive.
Method: TreeSeeker organizes search as a tree of sub-goal branches and applies textual UCB signals combining value, uncertainty, and risk to decide whether to extend, explore, or prune each branch. A companion memory system called TreeMem tracks evidence, conflicts, progress indicators, and failure markers across branches to inform subsequent decisions.
Key results:
- Consistently outperforms strong open-source baselines on XBench-DeepSearch, BrowseComp, and BrowseComp-ZH benchmarks
- Exact numeric scores are reported in the full paper but not stated in the abstract
Why it matters / caveats: TreeSeeker shows that explicit branch-and-return control complements stronger reasoning and tool execution in deep search; the abstract does not provide specific numeric performance differences over baselines.
Risk Under Pressure: Compute-Aware Evaluation of Adversarial Robustness in Language Models →
Technical breakdown
Authors: Malikeh Ehghaghi, Boglárka Ecsedi, Marsha Chechik, Colin Raffel
Problem: Standard adversarial robustness metrics (attack success rate at a fixed query budget) obscure the true computational effort required to jailbreak a model, making cross-model and cross-attack comparisons misleading.
Method: The authors introduce risk-compute curves that map cumulative floating-point operations (FLOPs) to attack risk, with derived summary metrics for average adversarial pressure. They evaluate ten LLMs across three model families using three attack strategies (gradient-based, iterative refinement, template-based) on two jailbreak benchmarks.
Key results:
- Compute cost varies by up to ~5x across harm categories within a single model
- Gradient-based attacks transfer across target models; scaling model size reduces gradient-based effectiveness
- Scaling model size shows limited impact on cheaper template-based attacks
- Safety-aligned RL increases aggregate adversarial cost while leaving certain harm categories disproportionately vulnerable
Why it matters / caveats: The FLOP-normalized framework exposes non-monotonic effects of alignment training that fixed-budget ASR metrics miss; exact model names and per-category vulnerability breakdowns require the full paper.
Rethinking Psychometric Evaluation of LLMs: When and Why Self-Reports Predict Behavior →
Technical breakdown
Authors: Rafal Kocielnik, Pengrui Han, Peiyang Song, Myrl G. Marmarelis, Ramit Debnath, Dean Mobbs, Anima Anandkumar, R. Michael Alvarez
Problem: Prior studies find that psychometric self-reports poorly predict LLM behavioral tendencies, but those studies use coarse Big Five personality frameworks that have weak predictive validity even for humans.
Method: Four behavioral task experiments (honesty, sycophancy, Cognitive Consistency Task, Implicit Association Test) are conducted across 11 frontier LLMs with and without identity induction prompts, comparing Theory of Planned Behavior (TPB) instruments against Big Five questionnaires.
Key results:
- TPB achieves within-session self-report-behavior coherence of r = +0.40 (95% CI [+0.37, +0.43]) aggregated across volitional tasks; Big Five best alignment is r = +0.06 to +0.07 with all CIs crossing zero
- Honesty task: TPB coherence r = +0.67, Sycophancy: r = +0.47, CCT: r = +0.22
- Claude 4.5 Haiku shows strongest TPB coherence (r = +0.75); Claude 3.7 Sonnet shows inverted coherence (r = -0.53)
- Cross-session coherence collapses for context-driven behaviors (sycophancy drops from r = +0.47 to -0.07); only 2 of 11 models retain significant cross-session coherence
Why it matters / caveats: TPB-style instruments achieve human-level within-session coherence for training-shaped behaviors but collapse for priming-driven behaviors like sycophancy; accepted as an oral at ICML 2026 Workshop on Combining Theory and Benchmarks.
See What I See, Know What I Think: Dense Latent Communication Across Heterogeneous Agents →
Technical breakdown
Authors: Siyi Chen, Xiaoyan Zhang, Meng Wu, Jonathan Tremblay, Valts Blukis, Stan Birchfield, Rene Vidal, Alvaro Velasquez, Sijia Liu, Qing Qu
Problem: Multi-agent LLM systems communicate via text, which discards rich internal representations; sharing KV-cache states directly across heterogeneous (different-size) models requires a lightweight alignment mechanism that works even when the receiving agent lacks input context.
Method: A lightweight cross-model KV-cache transformation is trained in two phases — reconstruction then generation — to align internal representations between sender and receiver models. The approach is evaluated across all six directional combinations of Qwen3-4B, 8B, and 14B model pairs on six benchmarks.
Key results:
- Outperforms prior heterogeneous KV-cache communication baselines across all six model-pair directions and six benchmarks
- Matches or exceeds text-based communication in context-aware settings at approximately 2–3x lower compute cost
- Context-unaware transfer (receiver has no input access) succeeds where prior methods collapse
Why it matters / caveats: Dense latent communication enables efficient "mind reading" between different-size models, significantly reducing compute versus text exchange; results are limited to the Qwen3 model family.
Getting Better at Working With You: Compiling User Corrections into Runtime Enforcement for Coding Agents →
Technical breakdown
Authors: Yujun Zhou, Kehan Guo, Haomin Zhuang, Xiangqi Wang, Yue Huang, Zhenwen Liang, Pin-Yu Chen, Tian Gao, Nuno Moniz, Nitesh V. Chawla, Xiangliang Zhang
Problem: User corrections made during one coding agent session are not retained across sessions; memory systems like Mem0 leave 57.5% of applicable user preference violations unresolved in subsequent interactions.
Method: TRACE (Test-time Rule Acquisition and Compiled Enforcement) is a drop-in pipeline that mines user chat corrections, rewrites them as atomic enforcement rules, and compiles those rules into runtime checks inserted before the agent executes code. Rules are derived from user corrections rather than developer-written constraints, requiring no model retraining.
Key results:
- ClawArena in-distribution: preference violations reduced from 100% to 37.6%
- ClawArena out-of-distribution: violations reduced from 100% to 2.0%
- MemoryArena in-distribution: violations reduced from 100% to 60.5%
- Compared to Mem0 baseline which left 57.5% of violations unresolved
Why it matters / caveats: Compiling corrections into runtime enforcement substantially outperforms retrieval-based memory for persistent user preference adherence; out-of-distribution generalization (2.0% violation rate) is particularly strong, suggesting robust rule abstraction.
WebChallenger: A Reliable and Efficient Generalist Web Agent →
Technical breakdown
Authors: Jayoo Hwang, Xiaowen Zhang, Vedant Padwal
Problem: LLM-based web agents underperform frontier proprietary reasoning models on complex web navigation tasks, with the gap attributed to architectural limitations rather than model capacity.
Method: WebChallenger introduces PageMem, a structured page representation deterministically built from the DOM that exposes each page as a hierarchy of semantic sections with short summaries. On top of PageMem, the framework adds three components: (1) a divide-and-conquer observation pipeline for section skimming and selective detail extraction, (2) a lightweight memory system mapping page structure and element behaviors, and (3) compound action workflows that collapse multi-step interactions into single actions. The system uses off-the-shelf open-weight models without fine-tuning.
Key results:
- WebArena: 56.3%
- VisualWebArena: 48.7%
- Online-Mind2Web: 51.0%
- WorkArena: 70.9%
Why it matters / caveats: Achieves near-frontier performance approaching proprietary systems at substantially lower cost through architectural design rather than model scaling; code is publicly released.
The Cold-Start Safety Gap in LLM Agents →
Technical breakdown
Authors: Chung-En Sun, Linbo Liu, Tsui-Wei Weng
Problem: LLM agents in tool-calling settings are disproportionately vulnerable to safety attacks at the start of a conversation before they have processed any regular tasks, creating a cold-start safety gap.
Method: The authors introduce SODA (Safety Over Depth for Agents), a benchmark measuring agent safety across up to 20 preceding regular agentic tasks, evaluated on seven models across four families. Representation analysis of hidden states and controlled ablation isolate which conversation components (task content vs. agent responses) most influence safety outcomes. Validation uses AgentHarm and Agent Safety Bench for safety, and BFCL and API-Bank for utility.
Key results:
- Safety improves by 9–52% as the number of preceding regular agentic tasks increases from 0 to 20, across all tested models
- Regular agentic task content is the primary safety driver; agent responses have secondary effects
- No degradation in utility benchmarks (BFCL, API-Bank) from the warm-up strategy
Why it matters / caveats: The finding suggests a simple deployment mitigation — warming agents with routine tasks before safety-critical interactions — but the mechanism by which prior tasks improve safety remains partially unexplained.
ToolSense: A Diagnostic Framework for Auditing Parametric Tool Knowledge in LLMs →
Technical breakdown
Authors: Ashutosh Hathidara, Sai Shruthi Sistla, Sebastian Schreiber, Sahil Bansal
Problem: Parametric tool-retrieval approaches that encode tool knowledge as virtual tokens via fine-tuning appear strong on standard benchmarks but may lack genuine semantic understanding of those tools.
Method: ToolSense automatically generates three diagnostic benchmarks from any tool catalog: a Realistic Retrieval Benchmark (RRB) with queries at three ambiguity tiers, an MCQ probing benchmark, and a QA probing benchmark. Applied to ToolBench (~47k tools), five parametric model configurations are evaluated.
Key results:
- Performance collapsed by approximately 50–64 percentage points on RRB queries compared to standard ToolBench benchmarks
- Several parametric configurations fell below embedding-model baselines on realistic queries
- Some models achieved near-random scores on factual probes despite strong retrieval performance on standard benchmarks
Why it matters / caveats: Reveals a knowledge-retrieval dissociation in parametric tool models: high retrieval scores on standard benchmarks do not imply genuine tool understanding; ToolSense and diagnostic benchmarks are open-sourced.
ArogyaSutra: A Multi-Agent Framework for Multimodal Medical Reasoning in Indic Languages →
Technical breakdown
Authors: Tanmoy Kanti Halder, Akash Ghosh, Subhadip Baidya, Arijit Roy, Sriparna Saha
Problem: Multimodal LLMs perform poorly on medical reasoning in low-resource Indic languages, limiting their applicability for rural Indian healthcare where patients communicate in native languages using multimodal inputs.
Method: ArogyaSutra is an actor-critic multi-agent framework integrating tool grounding with dual-memory mechanisms for step-wise, reasoning-aware decision making, with knowledge distillation from stored actor-critic simulation trajectories. The authors also release ArogyaBodha, a multilingual medical Q&A dataset spanning 8 data sources, 31 body systems, 6 imaging modalities, and 21 clinical domains across English and 7 Indian languages.
Key results:
- Average accuracy across 7 Indic languages: 43.40% (vs. GPT-4.0 baseline 39.30%, +4.1 points)
- Base Qwen2.5-VL-7B model baseline: 34.21%; ArogyaSutra improves by +9.2 percentage points
- Out-of-distribution (Spanish medical residency exams): 50.4% vs. base model 35.0%
- Without image grounding component: drops to 26.86%; without code-switching: 26.86%
Why it matters / caveats: Demonstrates consistent multilingual medical reasoning gains across all 7 Indic languages with a compact 7B-parameter base model; the dataset covers a broad range of modalities but absolute accuracy levels (43.40%) indicate substantial room for improvement in this high-stakes domain.
Revisiting Articulated Parts Perception in Robot Manipulation →
Technical breakdown
Authors: Xiaoqian Wu, Yejie Guo, Xiaoyang Chen, Lixin Yang, Cewu Lu, Yong-Lu Li
Problem: Existing articulated object representations for robot manipulation are either too coarse (affordance-based, low annotation cost but poor quality) or too burdensome (pose-based, high quality but expensive annotation), limiting scalable data collection and zero-shot generalization.
Method: Geometric Primary Structure (GPS) is a new representation capturing the key geometric primitives of articulated objects, annotated using a portable VR device at approximately 1 minute per object sequence. A GPS prediction model trained on single RGB-D images is deployed with a heuristic manipulation policy. The dataset contains 41,000 frames across 234 objects in 6 part classes.
Key results:
- Robot manipulation success rate: 73% covering 270 initial states for 9 objects
- Zero-shot generalization to unseen objects without domain-specific fine-tuning
- Dataset scale: 41,000 frames, 234 objects, 6 part classes, VR annotation at ~1 min/sequence
- Accepted at CVPR 2026
Why it matters / caveats: GPS bridges affordance and pose representations with a practical annotation workflow; the 73% success rate and zero-shot generalization are demonstrated on only 9 objects, leaving open questions about broader robustness.
A Stationary (and Therefore Compatible) Representation is All You Need →
Technical breakdown
Authors: Niccolò Biondi, Federico Pernici, Simone Ricci, Alberto Del Bimbo
Problem: When retrieval models are updated or replaced, previously indexed gallery embeddings become incompatible with new query embeddings, requiring costly gallery re-indexing that interrupts deployed retrieval services.
Method: The authors employ d-Simplex fixed classifiers during sequential fine-tuning, which enforce stationarity of the representation space. A convex combination of cross-entropy loss and contrastive loss is used to capture higher-order statistical dependencies while maintaining the stationarity constraint. Stationarity is formally shown to imply backward compatibility without requiring explicit compatibility constraints.
Key results:
- State-of-the-art performance in sequential fine-tuning and model replacement scenarios (specific numeric results not stated in abstract)
- Enables uninterrupted retrieval services during model updates
- Accepted to TPAMI 2026 (extension of CVPR 2024 work)
Why it matters / caveats: Provides a theoretical grounding for representation compatibility via stationarity, unifying prior empirical compatibility approaches; specific dataset names and numeric scores are available only in the full paper.
Flash-GMM: A Memory-Efficient Kernel for Scalable Soft Clustering →
Technical breakdown
Authors: Gal Bloch, Ariel Gera, Matan Orbach, Ohad Eytan, Assaf Toledo
Problem: Computing Gaussian Mixture Models on large datasets requires materializing the full N×K responsibility matrix in GPU memory, making GMM-based soft clustering infeasible for large-scale applications on a single device.
Method: Flash-GMM implements a fused Triton kernel that computes GMM responsibilities in a single GPU pass without ever materializing the full responsibility matrix. The approach is integrated into IVF (Inverted File Index) coarse quantizers for approximate nearest-neighbor search, using soft GMM assignments to assign vectors to multiple clusters.
Key results:
- 20x speedup compared to existing GMM implementations
- Enables training on datasets more than 100x larger than previously feasible on a single device
- Up to 1.7x fewer distance computations to achieve fixed recall targets in ANN search
- +2–12 recall@10 improvement at matched computational cost
Why it matters / caveats: Flash-GMM makes soft clustering practical at scale, and its integration into IVF-ANN search demonstrates concrete retrieval quality gains over hard k-means assignment; the Triton kernel approach is GPU-specific and may require adaptation for other accelerators.
Leveraging Morphology for Historical Script Metrological Analysis →
Technical breakdown
Authors: Malamatenia Vlachou Efstathiou, Raphaël Baena, Dominique Stutzmann, Mathieu Aubry
Problem: Paleographic analysis of historical manuscripts requires scalable methods for measuring morphological script variation, but existing approaches lack the precision to differentiate between scribal hands or detect subtle writing variations.
Method: A transformer-based detection architecture is paired with a prototype-based line reconstruction module that learns character prototypes using only line-level transcription supervision, improving upon the Learnable Typewriter baseline. The system predicts accurate character bounding boxes and is evaluated on 160 pages of a 14th-century manuscript (Paris, BnF, fr. 2813) written by four scribes.
Key results:
- Significantly outperforms existing baselines in character modeling with minimal supervision
- Successfully differentiates graphical profiles between four scribal hands on 160 manuscript pages
- Training requires a single column of text to apply measurements across all 160 pages
- Code and datasets publicly available
Why it matters / caveats: The approach makes morphological metrological analysis scalable for historical manuscripts with extremely low data requirements; evaluation is limited to a single 14th-century French manuscript, and generalization to other scripts and time periods requires further study.
On the Limits of LLM Adaptability: Impact of Model-Internalized Priors on Annotation Task Performance →
Technical breakdown
Authors: Etienne Casanova, Rafal Kocielnik, R. Michael Alvarez
Problem: LLMs deployed as zero-shot annotators (e.g., for toxicity detection) underperform when their internalized concept of a label does not match the task definition, and prompt-based corrections have limited effectiveness.
Method: LLM annotation performance is evaluated on toxicity detection across diverse datasets (social media, gaming, news, forums) using both dense and mixture-of-experts models in zero-shot settings. A novel metric, Definition-Specific Familiarity (DSF), measures alignment between the model's internalized concept and the task definition, and is compared against three memorization metrics (ROUGE-L, BERTScore, embedding cosine similarity).
Key results:
- Only 34.8% of zero-shot errors were corrected through additional prompt information
- Approximately two-thirds of initial errors proved resistant to prompt-based correction
- High-confidence errors showed particularly strong resistance to correction
- DSF showed positive association with annotation performance (partial r = +0.41)
- Memorization metrics (ROUGE-L, BERTScore, cosine similarity) failed to show positive association with performance
Why it matters / caveats: Demonstrates that model-internalized priors are the primary driver of annotation performance, not textual familiarity with the task definition; prompt engineering has fundamental limits for tasks where the model's internal concept diverges from the required annotation schema.
Generated on 2026-06-13 by Claude Code.