Last 7 Days (August 11 – August 17, 2026)
Action verbs describe not only the physical outcomes of actions, but also how those actions are performed. Yet action representations in vision-language-action models (VLAs) are typically optimized for reconstruction under L1/L2 losses in raw action space, where numerical proximity need not reflect linguistically meaningful distinctions. On BridgeV2, we show that action trajectories contain verb-grounding information beyond visual state changes, and that reconstruction-only discrete tokenization systematically erodes this information. To address this problem, we introduce SALT, a Semantically ALigned action Tokenizer that augments a VQ-VAE-style tokenizer with an auxiliary objective requiring a frozen vision-language model to recover the episode instruction from quantized action latents. Policies trained with SALT achieve 71.9% average success in SimplerEnv, compared with 42.7% for a reconstruction-only VQ-VAE tokenizer and 31.2% for FAST. SALT also develops verb-specialized codes while maintaining reconstruction fidelity. These results show that robot action trajectories provide a source of language grounding and that preserving this structure in action representations can substantially improve language-conditioned control.
Primary: Stanford University
All Institutions: Stanford University
SALT introduces a semantically aligned action tokenizer that significantly improves language-conditioned robotic control by preserving verb-grounding information in discrete action representations, offering a simple yet effective upgrade to existing VLA architectures.
The paper introduces SALT (Semantically ALigned action Tokenizer), a novel approach to action tokenization in Vision-Language-Action (VLA) models. The core innovation is augmenting a standard VQ-VAE tokenizer with an auxiliary generative objective: a frozen Vision-Language Model (VLM) must reconstruct the episode instruction from the quantized action latents. This forces the discrete action codes to preserve linguistically meaningful distinctions (verb grounding) that are typically lost in reconstruction-only objectives. The methodology is theoretically sound, leveraging the representational capacity of frozen LMs as a semantic probe/teacher. It addresses a specific, under-explored bottleneck in VLAs: the disconnect between the discrete action vocabulary and the semantic intent of the instruction. The approach is elegant in its simplicity and modularity, requiring no changes to the downstream VLA architecture.
The experimental evaluation is rigorous and well-designed. The authors first establish the premise that action trajectories contain unique verb-grounding information beyond visual goals (Diagnostic 1). They then demonstrate that standard tokenizers (Bin, VQ-VAE, FAST) systematically erode this information (Diagnostic 2). The main results on SimplerEnv show a substantial improvement in task success (71.9% for SALT vs. 42.7% for VQ-VAE and 31.2% for FAST). The analysis goes beyond simple success rates, providing detailed ablations on code-verb co-occurrence, showing that SALT develops specialized codes for specific verbs, whereas baselines produce diffuse or generic codes. The use of mutual information estimation and probe accuracy provides strong quantitative backing for the qualitative claims. The comparison is fair, controlling for architecture and compute.
The paper provides extensive details on the experimental setup, including dataset processing (BridgeV2), model architectures (miniVLA, Qwen2.5-0.5B), and training hyperparameters. The appendices contain detailed descriptions of the probe architectures, MI estimation methods, and feature extraction pipelines. The compute budget is clearly stated. The authors mention that SALT checkpoints and probe code will be released, which supports reproducibility. The methodology is described with sufficient mathematical precision to be reimplemented.
The authors acknowledge several limitations. The experiments are conducted on a single dataset (BridgeV2) with a limited verb vocabulary (17 classes). The evaluation is in simulation (SimplerEnv), and real-robot generalization is not tested. The method currently applies only to learnable tokenizers (VQ-VAE style), not fixed discretization schemes. The causal link between semantic alignment and policy performance is not fully established, though the correlation is strong. These are standard limitations for this type of work but are important to note.
This work has significant implications for the field of embodied AI and robotics. By demonstrating that action representations can and should be aligned with language semantics, it provides a new design principle for VLAs. The improvement in sample efficiency and task performance suggests that such alignment can make robot learning more robust and interpretable. The method is generalizable to other VLA architectures and datasets, potentially becoming a standard component in future VLA pipelines. It also contributes to the broader understanding of how language is grounded in physical action, bridging NLP and robotics. SALT introduces a semantically aligned action tokenizer that significantly improves language-conditioned robotic control by preserving verb-grounding information in discrete action representations, offering a simple yet effective upgrade to existing VLA architectures.
World-action models (WAMs) predict the future to act better, but nearly all of them predict only RGB latents, trained purely for pixel reconstruction, with no explicit signal for the 3D geometry or object semantics manipulation needs. We find a surprising free lunch: the same frozen video-generation VAE that encodes RGB also encodes 3D pointmaps almost losslessly, with no pointmap-specific training at all. This lets us supervise Flex-$π$, a 6B-parameter WAM, on 3D geometry and object-centric DINO semantics alongside RGB, at no cost in new sensors, new pre-training, or inference latency. Every visual signal is projected into this shared latent space and denoised jointly with actions inside a Mixture-of-Transformers backbone; per-stream dropout with cross-modality forcing then lets a single trained checkpoint run on any subset of these streams, from a fast action-only mode to full joint generation. The result is a policy that is exceptionally demonstration-efficient and generalizes well, beating the strongest baselines by up to 2-7$\times$ on dexterous, precise, real-world bimanual manipulation tasks both in and out of distribution, all while running faster than $π_{0.5}$. Our project website: https://flex-pi.github.io/
Primary: University of Washington
All Institutions: University of Washington, Toyota Research Institute
The paper introduces Flex-$\pi$, a novel World-Action Model that leverages the implicit 3D and semantic encoding capabilities of frozen video-generation VAEs to create a flexible, multi-modal policy for robotic manipulation, demonstrating significant gains in efficiency and generalization on real-world hardware.
The paper proposes Flex-$\pi$, a 6B-parameter World-Action Model (WAM) that integrates RGB, 3D pointmaps, and DINO semantics into a shared latent space. The core methodological innovation is the observation that a frozen video-generation VAE (likely Sora-like or similar) encodes 3D geometry and high-level semantics "almost losslessly" alongside RGB. This allows for multi-stream supervision without new sensors or pre-training. The architecture uses a Mixture-of-Transformers backbone with per-stream dropout and cross-modality forcing, enabling a single checkpoint to run in various modes (action-only, joint generation, etc.). This is a significant architectural shift from standard RGB-only or RGB-D specific policies, leveraging existing large-scale video priors for robotic control.
The evaluation focuses on real-world bimanual manipulation tasks, both in-distribution and out-of-distribution. The results claim a 2-7x improvement over strongest baselines in demonstration efficiency and generalization. The model also runs faster than $\pi_{0.5}$ in action-only mode. The inclusion of Libero-plus experiments provides a comparative benchmark, though the authors note that baselines with more pre-training data can slightly outperform Flex-$\pi$, suggesting that data scale remains a critical factor. The real-world hardware results are the strongest component, addressing the sim-to-real gap effectively.
The paper provides a project website and acknowledges compute resources. The claim of "no new pre-training" suggests the method relies on fine-tuning a large base model, which aids reproducibility if the base model is open. However, the specific details of the "cross-modality forcing" and the exact VAE used (implied but not named in the abstract) need to be scrutinized in the full text for exact reproducibility. The use of a 6B parameter model requires significant compute, which may limit independent replication by smaller labs.
The authors explicitly state that the model takes longer to converge (at least 10 epochs) due to the complexity of joint generation. Furthermore, the full joint generation mode is slower than parameter-comparable Vision-Language Actions (VLAs). The performance gap in Libero-plus indicates that semantic reasoning capabilities, while improved, may still lag behind specialized VLMs when data scale is significantly higher for the baseline.
This work bridges the gap between large-scale video generation models and robotic control, potentially democratizing access to high-performance policies by leveraging frozen, pre-trained visual priors. It reduces the dependency on expensive, synchronized multi-modal sensor data collection for robotics, as 3D and semantic information can be derived from standard RGB video via the shared latent space. This could accelerate the development of generalist robot policies. The paper introduces Flex-$\pi$, a novel World-Action Model that leverages the implicit 3D and semantic encoding capabilities of frozen video-generation VAEs to create a flexible, multi-modal policy for robotic manipulation, demonstrating significant gains in efficiency and generalization on real-world hardware.
The prevailing recipe for Vision-Language-Action (VLA) models couples a pretrained VLM with a separately trained flow-matching action expert. This makes the VLM a context encoder rather than a decision-maker. We introduce G0.5, a pretrained autoregressive VLA in which a single transformer decoder emits reasoning and action tokens under a single objective. Three components make this tractable at foundation-model scale: a learnable cross-embodiment action tokenizer that maps heterogeneous robot actions into a shared vocabulary; a native chain-of-thought stream interleaving task decomposition, object grounding, and action hints with action tokens; and a visual memory module that injects multi-second history through the vision encoder. Because reasoning and action share a single set of weights, the pretrained VLM's capabilities carry over to physical behavior: the model follows instructions closely, and prompts directly steer action granularity, task horizon, and out-of-distribution scene handling without further training. Pretrained on a large collection of robot datasets together with VQA samples, G0.5 surpasses state-of-the-art models across 7 independent regimes: real-world fine-tuning on R1lite and R1pro robots (76.7\% vs.\ 53.3\% for $π_{0.5}$ and 24.4\% for GR00T-N1.7), the 2025 BEHAVIOR Challenge on 50 long-horizon household mobile manipulation tasks using a generalist policy (31.4\% vs.\ 26.3\% for $π_{0.5}$ and 26.1\% for the challenge winner), DROID post-training followed by zero-shot transfer to an unseen environment and objects (82.5\%), a language-following Pick-and-Place benchmark, LIBERO (98.9\%), RoboTwin 2.0 (93.3\%), and SimplerEnv-Bridge (87.3\%).
Primary: Tsinghua University
All Institutions: Tsinghua University, BAAI (Beijing Academy of Artificial Intelligence)
G0.5 presents a compelling unified autoregressive framework for Vision-Language-Action models, demonstrating that integrating reasoning and action generation within a single transformer decoder can outperform specialized hybrid architectures across diverse robotic benchmarks, thereby advancing the state of generalist robot policies.
The paper proposes G0.5, a Vision-Language-Action (VLA) model that unifies reasoning and action generation within a single autoregressive transformer decoder. This contrasts with the prevailing "VLM-as-encoder" paradigm where a separate flow-matching or diffusion expert predicts actions. Key architectural innovations include a cross-embodiment action tokenizer to handle heterogeneous control spaces, a native chain-of-thought (CoT) stream that interleaves reasoning tokens with action tokens, and a visual memory module for long-horizon context. The approach leverages the in-context learning and instruction-following capabilities of pretrained VLMs directly for physical control, arguing that the VLM backbone is underutilized in current VLA architectures. The methodology is theoretically sound and aligns with the broader trend of scaling VLMs for embodied AI.
The evaluation is extensive, covering 7 independent regimes including real-world fine-tuning on R1lite/R1pro robots, the 2025 BEHAVIOR Challenge, DROID zero-shot transfer, and several simulation benchmarks (LIBERO, RoboTwin, SimplerEnv). G0.5 demonstrates strong performance, often surpassing specialized baselines like $\pi_{0.5}$ and GR00T-N1.7. Notably, it achieves high success rates on long-horizon household tasks in the BEHAVIOR Challenge with minimal post-training (1 epoch). The results suggest that the unified autoregressive approach effectively transfers VLM capabilities to robotics without significant degradation of language understanding. However, some tasks (e.g., assembling gift baskets, boxing books) show low success rates across all models, indicating persistent challenges in complex manipulation.
The paper provides detailed descriptions of the architecture, training data (robot datasets + VQA), and training objectives. The inclusion of a cross-embodiment tokenizer and specific CoT formatting suggests that the codebase is structured for reproducibility. The authors mention releasing the pretrained backbone, which is a positive step. However, the exact hyperparameters for the "large collection" of robot datasets and the specific VQA samples used are not fully detailed in the provided text, which may require consulting the full paper or code release for exact replication. The use of standard benchmarks (LIBERO, DROID) aids in comparative reproducibility.
The authors acknowledge several limitations: weak performance on drawer-insertion and semi-transparent cabinet tasks due to sensing limits; visual memory is limited to seconds of history, restricting long-horizon planning; lower-body actuation is not evaluated separately. Additionally, the model's performance on certain BEHAVIOR tasks is comparable to or slightly lower than the 4-checkpoint winner, suggesting that while efficient, it may not yet match the peak performance of heavily optimized multi-checkpoint ensembles. The reliance on VQA data for pretraining might introduce biases present in those datasets.
This work has significant implications for the field of embodied AI, potentially shifting the paradigm from hybrid VLA architectures to unified autoregressive models. By demonstrating that pretrained VLMs can serve as effective action generators, it lowers the barrier to entry for integrating advanced language reasoning into robotic control. The open release of the backbone could accelerate research in generalist robot policies. However, the increased capability of autonomous robots also raises safety and ethical considerations regarding deployment in human-centric environments. G0.5 presents a compelling unified autoregressive framework for Vision-Language-Action models, demonstrating that integrating reasoning and action generation within a single transformer decoder can outperform specialized hybrid architectures across diverse robotic benchmarks, thereby advancing the state of generalist robot policies.
Reinforcement learning (RL) post-training provides a direct way to align diffusion models with human preferences and task-specific rewards. However, current RL algorithms for diffusion models remain fragmented: reverse-trajectory methods rely on discretized likelihood ratios, whereas forward-matching methods train on reward-labeled noising versions of the rollout samples. This paper shows that these seemingly different losses arise from a single path-space principle. Starting from the regularized diffusion-RL objective, we use importance sampling between sampling SDEs to obtain an explicit policy-gradient estimator on trajectory space. The estimator contains the stochastic Itô integral underlying Flow-GRPO-type updates; we derive an equivalent variance-reduced value-gradient form that recovers the forward-matching structure of AWM and DiffusionNFT. This identifies the empirical gap between these method families as a variance-reduction effect rather than a difference in RL principle. The derivation yields a unified design space organized by value-gradient estimation, weight functions, and sampling choices. Within this space, we propose a multi-sample KDE value-gradient estimator that reuses rollout groups, together with scale-bounded weight families that retain stable existing recipes while excluding singular ones. Experiments on SD3.5-M and Qwen-Image models validate the variance-reduction explanation and show that the resulting recipe improves over prior diffusion-RL baselines.
Primary: State Key Laboratory of General Artificial Intelligence
All Institutions: State Key Laboratory of General Artificial Intelligence, ByteDance Seed
This paper provides a rigorous theoretical unification of diffusion-RL algorithms through a continuous-time path-space framework, introducing a variance-reduced estimator and principled weight design that significantly improves training stability and convergence.
The paper presents a significant theoretical unification of Reinforcement Learning (RL) methods for diffusion models. By deriving a continuous-time path-space importance sampling estimator, the authors demonstrate that disparate methods (Flow-GRPO, AWM, DiffusionNFT) are special cases of a single variance-reduced template. The introduction of a multi-sample KDE value-gradient estimator and the "scale-bounded" weight principle provides a principled framework for designing stable diffusion-RL algorithms. The theoretical derivation is rigorous, leveraging stochastic calculus (Itô integrals) to bridge the gap between reverse-trajectory likelihood ratios and forward-matching losses. This is a high-quality theoretical contribution that clarifies the underlying mechanics of a rapidly evolving subfield.
The experimental section validates the theoretical claims on SD3.5-M and Qwen-Image models. The authors provide ablation studies confirming the variance reduction properties of the KDE estimator and the stability benefits of the scale-bounded weights. The results show competitive or superior performance compared to SOTA baselines (AWM, DiffusionNFT) in terms of convergence speed and final reward scores across multiple metrics (PickScore, OCR, GenEval). The experiments are well-controlled, isolating the effects of the proposed components. However, the evaluation is limited to image generation, and while the methods are likely generalizable, the empirical evidence is currently domain-specific.
The paper provides detailed mathematical derivations and algorithmic descriptions. The authors specify hyperparameters (group size, steps, LoRA settings) and evaluation protocols. The code is not explicitly linked in the text provided, but the methodological clarity is high. The reliance on specific reward models (PickScore, etc.) is standard and reproducible.
The primary limitation is the scope of empirical validation, which is restricted to image generation models. While the theory is general for SDE-based generative models, the practical impact on video or 3D generation is not demonstrated. Additionally, the KDE estimator introduces a bandwidth hyperparameter ($h$) that requires tuning, though the paper discusses the bias-variance trade-off associated with it. The "scale-bounded" principle is an empirical observation formalized into a rule; while effective, it may not cover all edge cases in highly complex reward landscapes.
This work has substantial broader impact by providing a unified theoretical foundation for diffusion-RL, which will likely accelerate research in this area by reducing fragmentation. It enables practitioners to design more stable and efficient RL algorithms for aligning generative models. The improved stability and convergence speeds can lead to more accessible and less computationally expensive alignment processes for large-scale generative AI. This paper provides a rigorous theoretical unification of diffusion-RL algorithms through a continuous-time path-space framework, introducing a variance-reduced estimator and principled weight design that significantly improves training stability and convergence.
Neuron- and path-level interventions offer the finest-grained route to defending large language models (LLMs) against jailbreak attacks, yet existing methods fall short of this promise, i.e., they often compromise model utility significantly. Specifically, one line of work suppresses toxic neurons to erase harmful semantics, but since such semantics are distributed across the network, blocking every pathway forces a large intervention footprint. An alternative line of research focus on identify safety neurons using external classifiers. While promising, the existing approaches suffer from compromising neurons that are important for the model utility as well. Moreover, both approaches remain always on and thus perturb every benign request even when no attack is present. To address these limitations, we present \ours{}, a training-free defense that first identifies safety-specific neurons through per-neuron hypothesis tests under false-discovery-rate control together with a utility-specificity filter. Based on this identification, a trigger-style clamp holds the selected neurons at their harmful-conditional mean activations, injecting an internal harmful-input signal that triggers the refusal behavior learned during alignment. The clamp is then realized by two provably equivalent deployment modes, namely a detector-gated inference-time intervention and an offline bias-patch weight edit. Extensive experiments across four safety-aligned LLMs and four representative attacks demonstrate that \ours{} reduces the average attack success rate to at most 2.0\% while incurring a utility drop of only 0.5\% to 5.3\% on MT-Bench, the smallest among all defenses. Code is available at https://anonymous.4open.science/r/Tripwire-65C4.
Primary: Unknown
All Institutions: Unknown
The paper presents a novel, training-free defense mechanism using mechanistic interpretability to clamp safety neurons, achieving high safety with minimal utility loss. While the theoretical claims of equivalence and the empirical results are promising, the method's robustness against adaptive attacks and its generalizability across diverse model architectures require further rigorous validation before widespread adoption.
The paper proposes "Tripwire," a training-free defense mechanism for Large Language Models (LLMs) against jailbreak attacks. The core methodology involves identifying "safety-specific" neurons using per-neuron hypothesis tests under false-discovery-rate (FDR) control, filtered by a utility-specificity metric to avoid suppressing neurons critical for general performance. Once identified, these neurons are clamped to their "harmful-conditional mean activations" during inference. This effectively injects an internal signal that triggers the model's refusal behavior, mimicking the activation pattern seen when the model is processing harmful inputs, thereby forcing a refusal response even for benign or jailbroken prompts. The authors provide two deployment modes: a detector-gated inference-time intervention and an offline bias-patch weight edit, claiming provable equivalence between them. The approach is conceptually interesting, leveraging mechanistic interpretability tools for safety without retraining. However, the novelty is moderate as it builds on existing concepts of neuron intervention and activation engineering.
The evaluation covers four safety-aligned LLMs and four representative jailbreak attacks. The reported results claim a reduction in average attack success rate to at most 2.0% with a utility drop of only 0.5% to 5.3% on MT-Bench. These results suggest a strong Pareto frontier between safety and utility compared to existing methods. However, the evaluation is limited to a small set of models and attacks. The claim of "provably equivalent" deployment modes requires rigorous verification, as offline weight edits often suffer from distributional shift or approximation errors not fully captured by theoretical proofs in complex non-linear networks. The reliance on MT-Bench, which can be gamed or has known limitations, is a standard but imperfect choice for utility measurement.
The paper provides an anonymous code repository link. The methodology is described in sufficient detail (hypothesis testing, FDR control, clamping mechanism) to allow for reproduction. The "provably equivalent" claim suggests a clear mathematical formulation for the weight edit, aiding reproducibility. However, the exact hyperparameters for the hypothesis tests and the specific datasets used for the "harmful-conditional mean" estimation are critical for replication and must be clearly documented in the full text/code.
A significant limitation is the "always-on" nature of the intervention when active, which the authors claim to mitigate by gating, but the clamping itself is a strong perturbation. The method assumes that safety neurons can be cleanly separated from utility neurons, which may not hold for all models or specific types of harmful content. Furthermore, the "trigger-style" clamp might be vulnerable to adversarial attacks specifically designed to bypass this specific activation pattern (e.g., by activating other pathways that override the clamp). The evaluation lacks stress testing against more sophisticated, adaptive attacks that might probe for the specific neuron intervention.
This work contributes to the critical field of LLM safety, offering a lightweight, training-free alternative to full model retraining or extensive red-teaming. By enabling fine-grained control over model behavior through mechanistic interventions, it could become a standard tool for deploying safer LLMs in production environments. However, the ability to easily alter model behavior via neuron clamping also raises dual-use concerns, as similar techniques could potentially be used to bypass safety filters if the "safety" neurons are identified and suppressed. The paper presents a novel, training-free defense mechanism using mechanistic interpretability to clamp safety neurons, achieving high safety with minimal utility loss. While the theoretical claims of equivalence and the empirical results are promising, the method's robustness against adaptive attacks and its generalizability across diverse model architectures require further rigorous validation before widespread adoption.
We revisit the problem of learning predictors robust to adversarial examples at test-time. We prove that VC classes are adversarially robustly learnable with sample complexity linear in the VC dimension $d$, providing an exponential improvement over the previous upper bound of Montasser, Hanneke, and Srebro (2019). Remarkably, this result is achieved with a simple improper algorithm that combines the classic heuristic bagging (bootstrap aggregation) of Breiman (1996) with robust empirical risk minimization (RERM). Our algorithm computes RERMs on $O(d^\star)$ independent bootstrap samples and outputs their majority vote, where $d^\star$ denotes the dual VC dimension. We complement this result with a lower bound showing that this is unavoidable: in general, any learner in this oracle model requires $Ω(d^\star)$ calls to an RERM oracle, even when given arbitrarily many training examples.
Primary: Yale University
All Institutions: Yale University
This paper presents a significant theoretical breakthrough in adversarial robustness, proving that VC classes are robustly learnable with sample complexity linear in the dual VC dimension using a simple bagging-based algorithm, thereby providing an exponential improvement over prior bounds and establishing tight oracle complexity lower bounds. The work is a major contribution to statistical learning theory, offering deep insights into the interplay between VC dimension, dual VC dimension, and robust generalization, though its immediate practical impact is limited by the absence of empirical validation.
The paper proposes a theoretically grounded algorithm for adversarially robust learning that combines bootstrap aggregation (bagging) with Robust Empirical Risk Minimization (RERM). The core methodological contribution is a new proof technique using leave-one-out analysis to establish that VC classes are robustly learnable with sample complexity linear in the VC dimension $d$, specifically $O(d^*)$ where $d^*$ is the dual VC dimension. This represents a significant theoretical advancement over previous bounds which were exponential in $d$. The approach is simple in implementation (parallelizable RERM calls) but complex in theoretical justification, relying on swapping expectations and analyzing the distribution of RERMs rather than standard uniform convergence or sample compression arguments.
The paper is purely theoretical. It contains no empirical experiments, simulations, or case studies on standard datasets (e.g., CIFAR-10, ImageNet). The "evaluation" consists of rigorous mathematical proofs of upper bounds (sample and oracle complexity) and a matching lower bound for oracle complexity in the specified model. Therefore, experimental assessment is not applicable, but the theoretical rigor is high.
As a theoretical paper, reproducibility refers to the verifiability of the proofs. The paper provides detailed technical overviews and sketches of the proofs (e.g., leave-one-out margin bounds). The algorithm description is precise. However, without code, practitioners cannot immediately reproduce empirical results. The theoretical claims are self-contained within the text provided.
The primary limitation is the lack of empirical validation. While the theoretical bounds are strong, the practical performance of the algorithm (computational cost beyond oracle calls, constant factors, robustness in high-dimensional settings like images) is not demonstrated. The reliance on the dual VC dimension $d^*$, which can be exponentially larger than $d$ for some classes, means the guarantee is not always linear in the primal VC dimension, although it is linear in $d^*$. The paper acknowledges this trade-off.
This work has significant implications for the theoretical foundations of adversarial robustness. By closing the gap between sample complexity and VC dimension (up to the dual VC dimension factor), it provides a clearer understanding of the fundamental limits of robust learning. It suggests that simple, parallelizable methods (bagging) can achieve optimal sample efficiency, challenging the notion that complex, sequential methods (boosting) are necessary for optimal theoretical guarantees. This could influence future research directions towards simpler, more scalable robust learning frameworks. This paper presents a significant theoretical breakthrough in adversarial robustness, proving that VC classes are robustly learnable with sample complexity linear in the dual VC dimension using a simple bagging-based algorithm, thereby providing an exponential improvement over prior bounds and establishing tight oracle complexity lower bounds. The work is a major contribution to statistical learning theory, offering deep insights into the interplay between VC dimension, dual VC dimension, and robust generalization, though its immediate practical impact is limited by the absence of empirical validation.
The Muon optimizer incurs a significant overhead cost due to its cubic-time Newton-Schulz orthogonalization step. When weights are sharded, communication overhead compounds this computational cost, eroding the benefits of Muon in many settings. We present Dion3, a revision of Muon that targets this overhead at every level of the stack. Our Gram Newton-Schulz algorithm reduces the FLOP cost of orthogonalization, our CuteDSL kernels accelerate it by exploiting symmetry, and our megabatching strategy reduces communication overhead. Moreover, we propose a simple change to the update rule that cuts costs even further: selecting only a fraction of the momentum matrix's rows to orthogonalize at each step. This update rule improves on Dion (another "compressed" version of Muon), in both speed and performance. Overall, Dion3 matches or improves on the loss achieved by Muon but reduces optimizer step time by up to 6x. Dion3 is available via the dion package (https://github.com/microsoft/dion) as a drop-in replacement for Muon.
Primary: Microsoft Research
All Institutions: Microsoft Research, Dao-AILab
Dion3 presents a significant engineering and algorithmic advancement in making the Muon optimizer scalable and efficient for large-scale LLM training. By combining a novel Gram Newton-Schulz reformulation, optimized kernels, subsampled updates, and megabatching, the authors achieve substantial speedups without compromising model quality, effectively addressing the primary bottleneck that has hindered Muon's widespread adoption.
The paper addresses a critical bottleneck in modern large-scale LLM training: the computational and communication overhead of the Muon optimizer's Newton-Schulz orthogonalization step. The proposed Dion3 method introduces a full-stack solution comprising four key components: (1) Gram Newton-Schulz, which reformulates the orthogonalization to operate on smaller Gram matrices, reducing FLOP complexity; (2) Custom CuteDSL kernels that exploit the symmetry of these matrices for acceleration; (3) A subsampled update rule that orthogonalizes only a fraction of the momentum matrix rows, further reducing cost; and (4) Megabatching to amortize communication overhead in distributed settings. The methodology is technically sound, leveraging well-established linear algebra properties (Gram-Schmidt/Newton-Schulz) but applying them in a novel, systems-aware manner. The combination of algorithmic reformulation and low-level kernel optimization is a strong approach for this specific problem.
The experiments demonstrate that Dion3 matches or improves upon the loss achieved by Muon while reducing optimizer step time by up to 6x. The paper provides ablations for each component (Gram NS, kernels, subsampling, megabatching) and shows consistent speedups across different model sizes and parallelism strategies. The claim of "free lunch" performance improvement with the subsampled update rule is intriguing and supported by empirical results, though the theoretical justification is noted as an area for further work. The evaluation is comprehensive, covering both training quality and computational efficiency.
The authors provide open-source implementations via two interoperable packages (dion and gram-newton-schulz), which significantly enhances reproducibility. The code is available on GitHub, and the paper includes detailed descriptions of the implementation, including the use of CuteDSL for kernels. The modular nature of the contributions allows other researchers to adopt individual components.
The paper acknowledges that the performance improvement from the subsampled update rule is somewhat surprising and requires further theoretical investigation to understand why it generalizes. Additionally, while the method is designed to be flexible, its benefits are most pronounced in large-scale distributed training scenarios where communication and orthogonalization costs are high; for smaller models or single-GPU setups, the overhead might be less significant, though the speedups are still reported. The reliance on specific hardware (GPUs) and software stacks (CuteDSL, PyTorch) may limit immediate applicability in non-standard environments.
Dion3 lowers the barrier to using advanced optimizers like Muon, potentially leading to more efficient training of large language models. This can reduce computational costs and environmental impact associated with training frontier models. By making Muon more practical, it may also encourage broader adoption of orthogonal gradient methods, which have shown promise in improving optimization dynamics. Dion3 presents a significant engineering and algorithmic advancement in making the Muon optimizer scalable and efficient for large-scale LLM training. By combining a novel Gram Newton-Schulz reformulation, optimized kernels, subsampled updates, and megabatching, the authors achieve substantial speedups without compromising model quality, effectively addressing the primary bottleneck that has hindered Muon's widespread adoption.
State-aligned distortion has been documented in China-origin text-based large language models (LLMs), but whether, and in what form, it arises in multimodal systems has not been systematically examined. We construct a balanced benchmark of 200 core entries spanning ten politically sensitive topics, plus a seven-variant visual-abstraction probe, and run nine vision-language models (VLMs), seven China-origin and two non-China, across four elicitation paradigms and two prompt languages, yielding 21,708 trials. Each response is audited on six dimensions -- explicit refusal, information integrity, visual grounding, state-aligned framing, language consistency, and response length -- by two independent frontier LLM judges, validated against three human experts on a 200-trial sample. Measuring each dimension separately lets us decompose multimodal censorship into individual signals rather than a single refusal-based score; in particular, refusal and framing are measured independently, so a model can stop refusing while still reframing. We find that (i) Chinese-language prompting roughly triples the odds of state-aligned framing, within every model; (ii) China-origin models reframe more than non-China models (direction robust across judges and human raters; magnitude 1.6--3.2x); (iii) the effect is strongest in text-only political commentary (36.5%) and is gated by recognition of the depicted subject rather than pixel detail, persisting even at silhouette for iconic images; and (iv) across four Qwen generations, state-aligned framing rises while explicit refusal falls: censorship migrates from a visible act (refusal) to an invisible one (fluent reframing). We argue this shift to invisible reframing is fundamentally a problem of human-AI interaction: it removes the very signal users rely on to recognize that information has been withheld.
Primary: University of California, Los Angeles
All Institutions: University of California, Los Angeles, University of California, Berkeley, Stanford University
This paper provides a comprehensive and rigorous audit of state-aligned distortion in VLMs, revealing a shift from explicit refusal to subtle reframing in China-origin models, which has profound implications for AI safety and information integrity.
The paper employs a rigorous, multi-dimensional audit framework to evaluate state-aligned distortion in Vision-Language Models (VLMs). The methodology is sophisticated, moving beyond simple refusal detection to measure "state-aligned framing" through a six-dimension rubric. The use of two independent frontier LLM judges (Claude Opus 4.7 and GPT-5.5) validated against human experts provides a robust evaluation mechanism. The experimental design includes a balanced benchmark of politically sensitive images, varied elicitation paradigms, and visual abstraction probes, allowing for a granular analysis of how different inputs trigger censorship behaviors. The statistical analysis uses logistic regression with cluster-robust standard errors, appropriately handling the correlation in the data.
The experiments are extensive, covering 21,708 trials across nine VLMs. The results are clear and significant: Chinese-language prompting triples the odds of state-aligned framing, and China-origin models reframe significantly more than non-China models. The longitudinal analysis of Qwen generations reveals a concerning trend where explicit refusal decreases while state-aligned framing increases, suggesting a shift towards more subtle censorship. The validation against human experts shows high precision but lower recall for the LLM judges, which the authors correctly interpret as a conservative bias, strengthening the validity of their findings.
The paper provides detailed descriptions of the models, prompts, and evaluation metrics. The release of the benchmark and audit protocol enhances reproducibility. However, the reliance on proprietary LLM judges (Claude Opus 4.7, GPT-5.5) for the full corpus audit introduces some variability, although the use of two judges mitigates this. The specific versions of the models and the exact prompts are described, allowing for replication.
The study is observational and cannot establish causality regarding the source of the alignment (e.g., specific regulatory pressures vs. market forces). The interpretive nature of "state-aligned framing" means that some disagreement among raters is expected, although the authors address this with validation. The study focuses on a specific set of politically sensitive topics, which may limit the generalizability of the findings to other types of bias or censorship. The parameter count and architecture differences across the Qwen generations make it difficult to isolate the effect of alignment changes from capability improvements.
This paper has significant implications for AI safety, governance, and transparency. It highlights a critical blind spot in current AI evaluation methods: the inability to detect subtle forms of censorship that do not involve refusal. The findings suggest that as models become more capable and less likely to refuse, they may become more effective at disseminating state-aligned narratives, posing a risk to information integrity. This work calls for new evaluation standards that can detect and measure such subtle distortions. This paper provides a comprehensive and rigorous audit of state-aligned distortion in VLMs, revealing a shift from explicit refusal to subtle reframing in China-origin models, which has profound implications for AI safety and information integrity.
Let $X_1,\ldots,X_n$ be independent Gaussian tensors in $\mathbb{R}^{d_1}\otimes\cdots\otimes\mathbb{R}^{d_k}$ whose covariance is a Kronecker product of $k$ unknown positive-definite factors, and put $D=\prod_{a=1}^k d_a$ and $d_{\max}=\max_a d_a$. A recent result of Franks et al. (2026) established condition-number-free nonasymptotic guarantees for the tensor-normal maximum likelihood estimator under the sample threshold $nD\gtrsim k^2 d_{\max}^3$. They asked whether the cubic dependence on $d_{\max}$ could be replaced by the operator-norm scale $d_{\max}^2$. We answer this question affirmatively. We prove that, for $t\geq 1$, the maximum likelihood estimator exists uniquely with high probability whenever $nD\geq Ck^2 d_{\max}^2 t^2$, and satisfies $d_{\mathrm{FR}}(\widehatΘ,Θ)\leq Ct\sqrt{k}\,d_{\max}/\sqrt{n}$ and $d_{\mathrm{FR}}(\widehatΘ_a,Θ_a)\leq Ct\sqrt{k d_a}\,d_{\max}/\sqrt{nD}$. For every mode of largest dimension, we also obtain the sharp Thompson bound $d_{\mathrm{op}}(\widehatΘ_a,Θ_a)\leq Ct\,d_{\max}/\sqrt{nD}$. No sparsity, condition-number bound or warm start is assumed. For fixed $k$, the threshold has the information-theoretically optimal dependence on $d_{\max}$, and the displayed rates for the full precision and the largest factor match Gaussian minimax lower bounds up to a factor $\sqrt{k}$. The proof extends a random Gram bound for local group-orbit directions to the full local Lie algebra, transports it to a fixed Thompson ball by exact conjugation, and combines sensitivity of a constrained maximum likelihood estimator with an equivariant Kirszbraun extension and Gaussian concentration. This removes the Frobenius-to-operator loss responsible for the previous extra factor $d_{\max}$ and resolves the explicit open problem posed in the earlier work.
Primary: University of California, Los Angeles
All Institutions: University of California, Los Angeles
[One sentence main contribution]. [This paper resolves an open problem in tensor-normal statistics by proving that the maximum likelihood estimator exists and achieves optimal error rates under the information-theoretically optimal sample threshold $nD \gtrsim k^2 d_{\max}^2$, improving upon previous cubic bounds through a novel geometric and probabilistic proof technique.]
The paper presents a rigorous theoretical analysis of the Tensor-Normal Maximum Likelihood Estimator (MLE). The core methodological contribution is a novel proof strategy that resolves an open problem regarding the sample complexity threshold. Specifically, it improves the sufficient sample size condition from $nD \gtrsim k^2 d_{\max}^3$ to the information-theoretically optimal $nD \gtrsim k^2 d_{\max}^2$. The proof leverages affine-invariant geometry, random matrix theory (specifically extending a random Gram bound to the full local Lie algebra), and geometric probability (Kirszbraun extension, Gaussian concentration). The approach is mathematically sophisticated, combining differential geometry of positive definite matrices with high-dimensional probability. It avoids the "Frobenius-to-operator loss" present in prior work by transporting bounds via exact conjugation to a fixed Thompson ball.
This is a theoretical paper; it contains no empirical experiments, simulations, or benchmark evaluations. The "evaluation" consists of rigorous mathematical proofs of existence, uniqueness, and error bounds, compared against known minimax lower bounds.
As a theoretical work, reproducibility refers to the verification of the mathematical proofs. The paper provides detailed derivations, lemmas, and a clear proof structure. The reliance on standard results (Pisier's inequality, Gaussian concentration) and the explicit nature of the bounds make the work verifiable by experts in the field. The acknowledgment of AI assistance in proof development is noted but does not invalidate the mathematical content, provided the final check was manual (as stated).
The paper explicitly states several limitations: it does not prove the convergence of the flip-flop algorithm at the new threshold, it does not address the exact algebraic existence boundary (which is format-dependent), and the dependence on $k$ may not be optimal. Furthermore, as a pure theory paper, it offers no empirical validation of the rates on finite-sample data, which is often crucial for assessing practical utility in ML.
This work has significant impact for the theoretical machine learning community, particularly in structured covariance estimation and tensor models. By establishing the optimal sample threshold for the MLE without condition-number assumptions, it provides a solid foundation for understanding the statistical limits of tensor-normal models. It resolves a specific, well-defined open problem, enhancing the field's understanding of high-dimensional statistics. However, its impact is confined to theoretical statistics and learning theory rather than broad applied ML. [One sentence main contribution]. [This paper resolves an open problem in tensor-normal statistics by proving that the maximum likelihood estimator exists and achieves optimal error rates under the information-theoretically optimal sample threshold $nD \gtrsim k^2 d_{\max}^2$, improving upon previous cubic bounds through a novel geometric and probabilistic proof technique.]
Reinforcement learning (RL) for large language models is moving toward multi-turn agentic workloads, where rollout tasks repeatedly pause for external environments, resume with growing contexts, and finish at highly variable times. In this setting, RL training goodput, measured by training throughput, matters more than raw GPU occupancy: GPU waiting and repeated prefill recomputation are pure overhead. We present TideRL, a readiness-aware elastic RL system with Continuous Task Batching, Resource-Aware Ref-Actor Pipelining, and Elastic Resource Scaling. CTB preserves useful rollout state, $\textrm{RA}^2\textrm{P}$ selects between decoupled streaming and colocated aggregation from the ready backlog and arrival interval, and ERS moves ranks between rollout and training using the same readiness signals. Across text-only and multi-modal agentic workloads, TideRL improves RL training goodput by up to 5.6$\times$ over synchronous baselines and over 33% over asynchronous baselines, while reaching similar task performance. It also improves KV cache hit rate by 1.58$\times$, reduces per-step training time by up to 44.3%, and cuts total waiting time by up to 77.6%.
Primary: Tsinghua University
All Institutions: Tsinghua University, Z.AI, Zhongguancun Laboratory
TideRL presents a significant systems-level contribution to agentic RL by introducing a readiness-aware scheduling framework that dramatically improves training goodput, addressing a critical bottleneck in scaling reinforcement learning for large language models.
The paper addresses a critical bottleneck in modern Reinforcement Learning from Human Feedback (RLHF) and agentic RL workflows: the inefficiency of GPU utilization during multi-turn interactions. The proposed TideRL system introduces three key components: Continuous Task Batching (CTB), which decouples rollout generation from training steps to maintain GPU occupancy; Resource-Aware Ref-Actor Pipelining ($\textrm{RA}^2\textrm{P}$), which optimizes the handling of reference model evaluations and actor model aggregation; and Elastic Resource Scaling (ERS), which dynamically adjusts resources based on task readiness. The methodology is sound and directly targets the "straggler" problem inherent in asynchronous RL loops where some trajectories finish much faster than others. The approach leverages standard distributed computing principles (pipelining, batching) but applies them specifically to the unique latency profile of agentic RL, which involves external environment interactions.
The evaluation demonstrates significant improvements in training goodput (up to 5.6x over synchronous baselines and 33% over asynchronous baselines). Key metrics include a 1.58x increase in KV cache hit rate, a 44.3% reduction in per-step training time, and a 77.6% cut in total waiting time. The experiments cover both text-only and multi-modal agentic workloads, providing a robust validation of the system's versatility. The results are compelling and address a real pain point for practitioners scaling RL for LLMs. However, the paper lacks comparison against other recent system-level optimizations for RLHF (e.g., DeepSpeed-MII, vLLM's RLHF modes) if they exist, and the "asynchronous baselines" are somewhat generic. The performance gains are substantial, but the absolute baseline performance matters for context.
The paper provides detailed descriptions of the algorithms and system architecture. The authors are from reputable institutions (Tsinghua, Z.AI), suggesting rigorous engineering. However, no code repository is provided in the text, and reproducibility relies on the detailed implementation descriptions. The use of specific internal libraries or proprietary infrastructure at Z.AI might make exact replication difficult without access to their full stack.
The paper focuses heavily on system-level throughput and does not extensively discuss the impact of the scheduling decisions on the *quality* of the learned policy, beyond stating "similar task performance." There may be trade-offs in convergence speed or stability that are not fully explored. Additionally, the overhead of the scheduler itself is not quantified in terms of CPU/GPU usage, which could be significant in resource-constrained environments. The "elastic" scaling assumes a cloud environment with flexible resource allocation, which may not apply to all deployment scenarios.
This work has significant implications for the efficiency and accessibility of RLHF, a cornerstone of modern LLM alignment. By reducing the cost and time of training, TideRL could lower the barrier to entry for organizations wanting to perform RLHF, potentially democratizing access to aligned models. It also highlights the importance of systems research in advancing AI capabilities, showing that algorithmic efficiency can be improved through better software engineering and scheduling. TideRL presents a significant systems-level contribution to agentic RL by introducing a readiness-aware scheduling framework that dramatically improves training goodput, addressing a critical bottleneck in scaling reinforcement learning for large language models.
Interactive game world models typically autoregress visual observations directly in pixel or latent space, forcing structured properties such as pose, geometry, and occlusion to be implicitly maintained by the same generative sequence. Over long horizons, errors in these latent world properties accumulate, making consistency and controllability fragile. We explicitly model the evolving world state, delegate exact geometric computation to a fixed, zero-parameter renderer, and leave the neural model to synthesize appearance. We instantiate this idea as Marionette, a world model for interactive games with articulated characters. First, a two-stage autoregressive dynamics model predicts an explicit and interpretable 276-dimensional 3D world state comprising multi-entity articulated skeletons, metric root trajectories, and rotations. Second, a zero-parameter graphics bridge converts the predicted state into pose-control videos, computing world-space geometry and occlusion in closed form. Third, a control-conditioned video-diffusion observation model synthesizes photorealistic RGB observations from the resulting structured controls. Our experiments establish two properties of Marionette. First, the predicted world state is directly controllable. Forcing a mismatched action stream changes root-aligned joint error by 31% across 48 held-out segments. Second, long-horizon behaviour is determined in the state, and can be repaired there. Left free, the two generated characters drift to 21.2 m apart (recorded sessions stay near 5 m) and a third of frames show ground penetration. Two rules imposed on the explicit state, a terrain collider and a separation cap, cut penetration by 66% and keep the pair engaged, with no change to the observation model. Routing appearance through the predicted state costs no fidelity we can detect, at an FVD of 831 against 799 for recorded pose.
Primary: Alibaba Group (Alaya AI Lab)
All Institutions: Alaya AI Lab, Alibaba Group
[One sentence main contribution]. Marionette introduces a hybrid world model for interactive games that decouples explicit 3D state prediction from photorealistic rendering, achieving superior controllability and long-horizon consistency compared to end-to-end generative approaches. [Comprehensive analysis of the technical contribution, methodology, and significance to the field]. The paper presents a compelling argument for the decoupling of dynamics and appearance in generative world models. By explicitly modeling the world state and using a zero-parameter renderer, Marionette avoids the compounding errors that plague pixel-based autoregressive models. The experimental results are strong, particularly the demonstration that long-horizon failures can be repaired by imposing rules on the explicit state. This is a significant step towards more robust and controllable generative simulators. The work is well-written, clearly motivated, and empirically validated. While the core idea of separating state and observation is not new, its successful application to high-fidelity, open-ended game world generation with modern diffusion models is a notable achievement. The paper is suitable for a top-tier venue.
The paper proposes "Marionette," a hybrid world model architecture that decouples the prediction of explicit, interpretable 3D world states from the generation of photorealistic appearance. The core innovation lies in the factorization: a two-stage autoregressive dynamics model (ActionGPT and PoseGPT) predicts a 276-dimensional articulated state, which is then passed through a zero-parameter, deterministic graphics bridge to render pose-control videos. Finally, a control-conditioned video diffusion model (Wan2.2-Fun-5B) synthesizes RGB frames. This approach addresses the compounding error problem inherent in end-to-end pixel/latent autoregressive models by ensuring that geometric consistency, occlusion, and physics are handled by exact deterministic operations rather than learned approximations. The methodology is sound, leveraging recent advances in video diffusion and discrete action modeling, but the architectural pattern of separating state prediction from rendering is not entirely new in robotics; its application to high-fidelity, open-ended game world generation is the key contribution.
The evaluation is rigorous and well-designed for the proposed architecture. The authors establish two key properties: controllability (forcing action tokens changes the pose significantly) and long-horizon stability (rules imposed on the explicit state, such as terrain colliders and separation caps, repair drift without retraining the observation model). The use of a state-layer metric (measuring error in meters) alongside observation-layer metrics (FVD) is a significant strength, allowing for direct assessment of the dynamics model's accuracy. The comparison against a pixel-autoregressive baseline is fair, showing that the decoupled approach maintains visual fidelity (FVD 831 vs 975) while offering superior control and consistency. The ablation studies effectively isolate the contribution of the explicit state.
The paper provides a detailed description of the dataset (WildWorld), the state representation, and the model components. The authors commit to releasing code, the dataset manifest, and the evaluation protocol. The use of open-source components (Wan2.2, VideoX-Fun) aids reproducibility. However, the specific game engine recordings and the proprietary nature of the "WildWorld" dataset (derived from *Monster Hunter Wilds*) may pose challenges for independent replication of the exact data distribution, although the authors state the corpus is public. The deterministic bridge is fully specified, which is good for reproducibility.
The paper acknowledges several limitations. First, appearance consistency degrades over long horizons because the observation model relies on chunk-relay and lacks persistent appearance references beyond the first frame. Second, the model is limited to the specific game domain and character types present in the training data. Third, the reliance on an explicit state means that entities not tracked in the state (e.g., small monsters or AI companions not in the recording) are not rendered correctly, leading to "content with no state behind it." Finally, the current scope is limited to two interacting entities, which may not scale to complex, multi-agent environments without further architectural changes.
This work has significant implications for the development of interactive game engines, virtual reality, and simulation-based training systems. By demonstrating that explicit state modeling can improve controllability and long-horizon consistency in generative world models, it provides a blueprint for more reliable and interpretable AI agents in dynamic environments. It also highlights the importance of hybrid architectures that combine the strengths of neural generative models (appearance) with deterministic simulators (physics/geometry). [One sentence main contribution]. Marionette introduces a hybrid world model for interactive games that decouples explicit 3D state prediction from photorealistic rendering, achieving superior controllability and long-horizon consistency compared to end-to-end generative approaches. [Comprehensive analysis of the technical contribution, methodology, and significance to the field]. The paper presents a compelling argument for the decoupling of dynamics and appearance in generative world models. By explicitly modeling the world state and using a zero-parameter renderer, Marionette avoids the compounding errors that plague pixel-based autoregressive models. The experimental results are strong, particularly the demonstration that long-horizon failures can be repaired by imposing rules on the explicit state. This is a significant step towards more robust and controllable generative simulators. The work is well-written, clearly motivated, and empirically validated. While the core idea of separating state and observation is not new, its successful application to high-fidelity, open-ended game world generation with modern diffusion models is a notable achievement. The paper is suitable for a top-tier venue.
Subject-driven image personalization---generating new images that preserve the identity of one or several reference subjects in novel scenes---is a foundational capability for modern visual content creation. It is currently dominated by generalized methods that fine-tune a pretrained multimodal diffusion transformer (MMDiT) on hundreds of thousands to millions of paired \emph{(reference, composed-target)} examples, where each composed target is a synthesized image of the subject in a novel scene. Producing such targets demands a costly multi-stage curation pipeline---LLM-based prompt generation, T2I-based composed-target synthesis, reference-subject extraction, VLM-based quality filtering, and correspondence labeling---and tightly couples each method to a particular target synthesizer and curation choice. We introduce \emph{CRAFT} (Constrained Reward via Attention Fine-Tuning), a single-step ReFL framework that fine-tunes a pre-trained \emph{reference-aware} MMDiT via LoRA adapters using a compact reference-only data construction---$10$K reference images and subject masks, with no composed-target supervision. CRAFT realizes a \emph{Where to look} principle: attention-level rewards align noise- and phrase-token attention with the correct reference subject, and the resulting per-subject attention masks gate a pixel-level identity reward to keep image-space supervision consistent with the learned attention routing. Applied to FLUX.2-klein-9B, CRAFT achieves state-of-the-art performance on XVerseBench \rev{while using no composed-target supervision---only $10$K reference-only samples, whereas prior generalized methods require $150$K to over $2$M composed-target pairs}. The same recipe transfers to other reference-aware backbones, consistently improving performance. Project page: https://jihun999.github.io/projects/CRAFT/.
Primary: DGIST
All Institutions: DGIST, Baidu, Inc., KAIST
This paper presents a significant methodological advance in subject-driven image personalization by introducing an attention-guided reward fine-tuning framework that eliminates the need for composed-target data, thereby drastically reducing data curation costs while achieving state-of-the-art performance on standard benchmarks.
The paper proposes CRAFT, a method for subject-driven image personalization that eliminates the need for composed-target supervision (i.e., generated images of the subject in new scenes). Instead, it uses a "ReFL" (Reward Fine-Tuning) framework that leverages attention mechanisms within a Multimodal Diffusion Transformer (MMDiT). The core innovation is the "Where to look" principle: it aligns noise- and phrase-token attention with the reference subject to create attention masks, which then gate a pixel-level identity reward. This ensures consistency between the attention routing learned during training and the final image generation. The approach is applied to FLUX.2-klein-9B and transfers to other backbones. The methodology is technically sound and addresses a significant bottleneck in the field (data curation cost).
The authors evaluate CRAFT on XVerseBench and OmniContext. They claim state-of-the-art performance on XVerseBench while using only 10K reference-only samples, compared to prior methods requiring 150K to 2M composed-target pairs. The qualitative results presented in the figures demonstrate strong identity preservation and compositional capability. The comparison highlights the efficiency gains significantly. However, as an arXiv preprint, the quantitative metrics (e.g., CLIP-I, DINO scores, FID) are not fully detailed in the provided text, relying on the claim of SOTA. The transferability to other backbones is a strong positive point for empirical validation.
The paper provides a project page and claims to use standard components (LoRA, MMDiT). The specific implementation details of the "attention-level rewards" and the "single-step ReFL" loop are critical for reproducibility. The abstract mentions "compact reference-only data construction," which is easier to reproduce than complex multi-stage pipelines. However, the exact hyperparameters for the attention alignment and reward scaling are not visible in the abstract. The use of FLUX.2-klein-9B (a specific variant) might require specific licensing or access. Overall, the method appears reproducible if the code is released, which is implied by the project page.
The paper does not explicitly discuss failure modes in the abstract. Potential limitations include the quality of the attention masks (if the "Where to look" principle fails to accurately segment the subject in complex scenes, the reward signal may be noisy). The reliance on a pre-trained reference-aware MMDiT means the method is not architecture-agnostic in its initial application, though it claims transferability. The "single-step" nature might limit the optimization landscape compared to multi-stage iterative refinement methods. The evaluation on XVerseBench is good, but broader benchmarks like ImageBind or general aesthetic metrics might be needed to fully assess generalization.
This work significantly reduces the barrier to entry for high-quality subject personalization by removing the need for expensive data curation pipelines. This democratizes the technology for individual creators and smaller organizations. It also advances the understanding of attention mechanisms in diffusion models as a tool for supervision. The potential for misuse (deepfakes, identity theft) remains a concern inherent to all subject personalization technologies, but the efficiency gains might accelerate both legitimate and illegitimate use cases. This paper presents a significant methodological advance in subject-driven image personalization by introducing an attention-guided reward fine-tuning framework that eliminates the need for composed-target data, thereby drastically reducing data curation costs while achieving state-of-the-art performance on standard benchmarks.
When visual evidence is occluded or chaotic, models should abstain. In this paper, we show that Vision-Language Models (VLMs) can internally distinguish when abstention is required, but fail to express it anyway. We introduce TRAPSBench, a procedurally generated video benchmark of 1,404 matched physics pairs in which a single targeted change renders the outcome undeterminable from the visual evidence. Furthermore, we introduce Penalized Epistemic Calibration Score (PECS), a new robust metric that requires models to both answer correctly when the outcome is knowable, and abstain when the outcome is not. Across 16 VLMs spanning five families, spontaneous restraint is poor: the best PECS is 0.292. The bottleneck is expression, not perception: linear probes decode answerability from hidden states at up to 0.91 AUROC across physics domains; steering a single-layer void direction causally induces or suppresses abstention. Our results replicate across three open-weight families (Qwen, Gemma, LLaVA). The failure is also more pronounced in visual than textual uncertainty: models detect textual impossibility about 4x more readily than missing visual evidence. Closing this representation--output gap likely requires output-stage interventions.
Primary: Meta Superintelligence Labs
All Institutions: Meta Superintelligence Labs, Reflection AI
This paper makes a significant contribution to the field of Vision-Language Models by identifying and quantifying a critical failure mode—epistemic overconfidence—in current state-of-the-art models. Through the novel TRAPSBench benchmark and PECS metric, it demonstrates that while VLMs can internally detect uncertainty, they fail to express it, a finding that fundamentally shifts the focus of calibration research from perception to expression.
The paper introduces TRAPSBench, a procedurally generated benchmark using MuJoCo physics simulations to create "matched pairs" where a single targeted change renders the outcome undeterminable from visual evidence. This is a rigorous methodological approach to testing epistemic restraint, moving beyond static image benchmarks to dynamic video understanding. The introduction of the Penalized Epistemic Calibration Score (PECS) provides a unified metric for both accuracy and abstention, addressing a critical gap in evaluating VLM reliability. The methodology includes causal steering experiments using linear probes, which adds a layer of mechanistic interpretability to the evaluation.
The evaluation spans 16 VLMs across five families (Qwen, Gemma, LLaVA, etc.), providing broad coverage. The results are striking: the best PECS is only 0.292, indicating a severe failure in expression despite high internal representation of uncertainty (AUROC up to 0.91). The replication across three open-weight families strengthens the generalizability of the finding. The distinction between textual and visual uncertainty detection (4x difference) is a significant empirical insight.
The benchmark is procedurally generated, ensuring scalability and reproducibility. The code and data are released under CC BY-NC 4.0. The use of standard VLM APIs and public checkpoints facilitates replication. The procedural nature of the benchmark allows for the generation of infinite test cases, enhancing robustness.
The benchmark relies on synthetic MuJoCo physics videos, which may not fully capture the complexity of real-world visual uncertainty (e.g., occlusion in natural scenes, ambiguous social cues). The "targeted change" paradigm is specific to physical causality; generalizing the concept of "undeterminable outcomes" to other domains (e.g., legal, medical) requires further validation. The study focuses on open-weight models; proprietary models might exhibit different behaviors, though the abstract suggests the bottleneck is structural.
This work has significant implications for the safe deployment of VLMs in high-stakes domains where abstention is crucial (e.g., autonomous driving, medical diagnosis). By highlighting the "representation-output gap," it directs future research toward output-stage interventions rather than just improving internal representations. It challenges the assumption that current VLMs are "calibrated" and provides a necessary tool for auditing their reliability. This paper makes a significant contribution to the field of Vision-Language Models by identifying and quantifying a critical failure mode—epistemic overconfidence—in current state-of-the-art models. Through the novel TRAPSBench benchmark and PECS metric, it demonstrates that while VLMs can internally detect uncertainty, they fail to express it, a finding that fundamentally shifts the focus of calibration research from perception to expression.
Interactive autoregressive video generation demands both low-latency rollouts and precise online control. Few-step distillation accelerates generation by reducing denoising steps, while online control imposes a causal constraint: frames and blocks should depend on history and controls available during generation. Existing video distribution matching distillation (DMD) pipelines, however, often supervise causal few-step students using bidirectional teachers that score complete clips. The score for a target can therefore depend on future frames and controls that were unavailable when the student generated it, misaligning teacher supervision with the student's causal information set. We introduce Context-Matched Distillation (CMD), a causal DMD framework that aligns teacher supervision with the information available when each target is generated. CMD replaces bidirectional full-clip scoring with a causal teacher that evaluates each target without access to future frames or controls. The same causal teacher initializes the few-step student, establishing a consistent causal formulation across teacher training, student distillation, and inference. Beyond aligning the temporal information boundary, Prefix Scoring matches supervision to the student's realized rollout context by evaluating each target under the cached student-generated prefix that produced it. Prefix Corruption further stabilizes training by perturbing unreliable prefixes produced early in training while preserving this target-context alignment. With a simple causal formulation, CMD naturally extends to frame-wise and chunk-wise generation, long video distillation, and camera-conditioned distillation. Experiments demonstrate state-of-the-art aggregate performance among autoregressive methods on both short- and long-video benchmarks, together with substantially improved adherence to time-varying camera controls.
Primary: University of Surrey
All Institutions: University of Surrey
Context-Matched Distillation (CMD) introduces a causal framework for distilling autoregressive video models that aligns teacher supervision with the student's causal information set, significantly improving camera control adherence and long-video consistency. The paper presents a rigorous solution to the teacher-student context mismatch, demonstrating that matching the temporal information boundary during distillation is essential for high-quality, controllable video generation.
The paper addresses a critical theoretical and practical flaw in current autoregressive video distillation pipelines: the "teacher-student context mismatch." Standard Distribution Matching Distillation (DMD) uses a bidirectional teacher to score causal student generations, allowing the teacher to "cheat" by using future frames/controls to score past frames. The authors propose Context-Matched Distillation (CMD), which replaces the bidirectional teacher with a causal teacher trained via Diffusion Forcing. Key innovations include "Prefix Scoring" (conditioning the teacher score on the actual student-generated history rather than noisy targets) and "Prefix Corruption" (stabilizing training by perturbing early, unreliable student prefixes). The methodology is logically sound, well-motivated, and directly addresses the causal constraints of interactive video generation. It effectively bridges the gap between offline training and online inference information sets.
The experimental evaluation is comprehensive, covering short-video quality (VBench-I2V), long-video consistency (SANA-WM benchmark), and camera-controlled generation (SANA-WM camera splits). The results demonstrate state-of-the-art performance among autoregressive methods, with significant improvements in camera adherence (lower rotation/translation errors) and competitive quality scores. The ablation studies are rigorous, isolating the contributions of causal scoring, prefix scoring, and prefix corruption. The use of an LLM-based pairwise preference judge adds a layer of perceptual validation beyond standard metrics. The comparison against strong baselines like LingBot-World, CausVid, and Self-Forcing is appropriate.
The paper provides sufficient detail on the training setup, including the base model (Cosmos-Predict2.5-2B), data sources (generated videos, DL3DV), and hyperparameters (iteration counts, corruption levels). The mathematical formulations for the loss functions and attention masks are clear. However, as with many recent diffusion papers, the exact code implementation details for the "Prefix Corruption" scheduler and specific attention mask implementations might require careful engineering to reproduce exactly. The reliance on specific base models and benchmarks aids in reproducibility.
The paper does not explicitly discuss the computational overhead of the causal teacher relative to the bidirectional teacher during distillation. While the teacher is frozen during student updates, the initial training of the causal teacher adds a step. The method is evaluated primarily on image-to-video generation; its applicability to text-to-video or other modalities is implied but not demonstrated. The "Prefix Corruption" introduces a hyperparameter ($\sigma$) that requires tuning, which could be a point of fragility if not robustly scheduled.
This work significantly advances the field of interactive and controllable video generation. By enabling precise camera control and long-horizon consistency in autoregressive models, it facilitates applications in virtual reality, robotics simulation, and interactive storytelling. The causal formulation ensures that generated content respects temporal causality, which is crucial for world models. There are no immediate negative societal impacts identified beyond the general concerns associated with high-fidelity video generation (e.g., deepfakes), which are inherent to the domain. Context-Matched Distillation (CMD) introduces a causal framework for distilling autoregressive video models that aligns teacher supervision with the student's causal information set, significantly improving camera control adherence and long-video consistency. The paper presents a rigorous solution to the teacher-student context mismatch, demonstrating that matching the temporal information boundary during distillation is essential for high-quality, controllable video generation.
While 3D Vision-Language Models (3D VLMs) have demonstrated remarkable spatial reasoning capabilities, they suffer from massive visual token counts that create severe computational bottlenecks during inference. Existing token pruning methods primarily rely on diversity-based selection, discarding similar tokens to maximize dispersion. However, in 3D environments, this approach frequently drops representative prototype tokens in favor of outliers, breaking the multi-view consistencies and geometric structures essential for spatial reasoning. In this paper, we propose a paradigm shift for 3D VLM token pruning: from maximizing diversity to preserving visual evidence coverage. We introduce CoverPrune, a training-free framework that formulates inference-time token pruning as an Optimal Transport (OT) problem. To overcome the intractable combinatorial subset selection inherent in this formulation, we design the Feature-Spatial-Temporal (FST) transport cost and target capacity, along with an efficient Spatial-Guided Greedy Selection (SGS) algorithm to approximate the OT objective. Furthermore, we propose CoverPrune-Lite, an accelerated variant utilizing spatially structured local matching for minimal overhead. Extensive experiments across multiple 3D visual-spatial reasoning benchmarks demonstrate that our methods achieve state-of-the-art token efficiency, maintaining robust reasoning performance even under highly aggressive pruning budgets. Visit our project website at https://github.com/Brucess/CoverPrune.
Primary: Tsinghua University
All Institutions: Tsinghua University, Shenzhen International Graduate School, Tsinghua University, LIGHTSPEED
[One sentence main contribution]. [The paper introduces CoverPrune, a training-free token pruning framework for 3D VLMs that formulates token selection as an Optimal Transport coverage problem, significantly improving spatial reasoning performance under aggressive pruning budgets by preserving geometric and temporal consistency.]
The paper proposes a novel formulation of token pruning for 3D Vision-Language Models (3D VLMs) as an Optimal Transport (OT) problem. The core insight is shifting from "diversity-based" pruning (which risks dropping representative prototypes) to "coverage-based" pruning (which aims to cover the informative content of the token set). The method introduces a Feature-Spatial-Temporal (FST) cost function that incorporates semantic, geometric, and temporal distances, which is highly relevant for 3D spatial reasoning where multi-view consistency and temporal order are critical. The optimization is handled via a semi-relaxed OT formulation solved with a Spatial-Guided Greedy Selection (SGS) algorithm, and a lightweight variant (CoverPrune-Lite) uses Morton-code-based spatial grouping for efficiency. The methodology is theoretically grounded and addresses specific failure modes of existing methods in 3D settings.
The authors evaluate CoverPrune on four benchmarks: ScanQA, SQA3D, Scan2Cap, and VSI-Bench. They compare against strong baselines including VisionZip, FastVID, DTC, and EgoPrune. The results demonstrate state-of-the-art performance in terms of accuracy retention under aggressive pruning budgets. The inclusion of VSI-Bench, a complex spatial-temporal reasoning benchmark, strengthens the claim that the method preserves geometric structure better than generic pruning methods. The ablation studies on FST components and capacity weighting provide evidence for the design choices. The efficiency analysis shows that CoverPrune-Lite offers significant speedups with minimal accuracy loss.
The paper provides a project URL (https://github.com/Brucess/CoverPrune) and details the implementation settings, including the use of GS-Reasoner and VLM-3R as base models, 32-frame sampling, and specific hyperparameters for the FST cost. The training-free nature of the method makes it easier to reproduce compared to methods requiring fine-tuning. The description of the SGS algorithm and CoverPrune-Lite grouping is sufficiently detailed for implementation.
The method relies on the availability of 3D coordinates (estimated via SfM or geometry foundation models), which may not be available or accurate for all 3D VLM inputs (e.g., purely 2D-image-based VLMs without explicit 3D backbones). The computational complexity of the full CoverPrune (SGS) is still non-trivial due to iterative OT solving, although the Lite variant mitigates this. The performance gain might be less pronounced on tasks that do not rely heavily on fine-grained spatial reasoning.
This work contributes to the efficient deployment of large multimodal models, particularly in resource-constrained environments or for real-time applications like embodied AI. By preserving geometric structure, it may also improve the robustness of 3D VLMs in safety-critical applications. The OT-based perspective offers a new theoretical lens for token selection in other sequence modeling tasks. [One sentence main contribution]. [The paper introduces CoverPrune, a training-free token pruning framework for 3D VLMs that formulates token selection as an Optimal Transport coverage problem, significantly improving spatial reasoning performance under aggressive pruning budgets by preserving geometric and temporal consistency.]
Popular facts are memorised more deeply during pretraining and resist removal longer than rare ones, yet existing LLM unlearning methods apply uniform gradient pressure regardless of training-data frequency. We propose the AdaPop (Adaptive Popularity) method, which combines local token confidence with a per-fact popularity-dependent exponent derived from an external proxy (e.g., Wikidata sitelinks, LLM-as-Judge), and automates the forget-retain balance via a dual-ascent controller that adjusts the retain penalty each epoch. Across three model families and two benchmarks, AdaPop leaks ~5x less forgotten content than competing methods under paraphrased queries and ~1.6x less under adversarial reformulations. We support our analysis with internal metrics: under our method, forget-set hidden states move further from the pre-unlearning model's states than under other methods, while retain-set representations remain close.
Primary: Unknown (Paper does not list author affiliations; code hosted on GitHub by 'Anya-wUw')
All Institutions: Unknown
[One sentence main contribution]. The paper introduces AdaPop, a training-time unlearning method that uses external popularity signals to adaptively weight gradient updates, effectively closing the popularity gap in LLM unlearning. [Comprehensive analysis of the technical contribution, methodology, and significance to the field]. AdaPop represents a significant step forward in LLM unlearning by addressing a critical failure mode of existing methods: the uneven erasure of facts based on their memorization depth. By leveraging external popularity proxies to modulate gradient ascent, the method ensures that deeply encoded facts receive sufficient pressure for removal while rare facts are not over-erased, thus preserving general capabilities. The rigorous evaluation across multiple models and benchmarks, supported by internal representation analysis, provides strong evidence for the method's efficacy. The theoretical analysis of gradient regimes adds depth to the understanding of how unlearning dynamics interact with memorization strength. While dependent on external signals, the approach offers a practical and effective solution for improving the reliability of machine unlearning in real-world applications.
The paper proposes AdaPop, a method for Large Language Model (LLM) unlearning that addresses the "popularity gap"—the phenomenon where frequently memorized facts are harder to erase than rare ones. The core innovation is the use of an external popularity proxy (e.g., Wikidata sitelinks) to compute a per-fact power-law exponent that weights the gradient ascent on the forget set. This is combined with a dual-ascent controller to dynamically balance the forget and retain losses. The methodology is theoretically grounded, with propositions explaining the gradient regimes (self-limiting vs. pressure-sustaining) based on the exponent value. The approach is distinct from existing methods like Weighted Gradient Ascent (WGA) which rely on internal model confidence, arguing that confidence is a poor proxy for parametric encoding depth.
The evaluation is comprehensive, covering three model families (Llama, Qwen, Gemma) and two benchmarks (DUET, RWKU). The paper demonstrates that AdaPop significantly outperforms baselines (GA, GD, NPO, WGA) in terms of forgetting robustness against paraphrased and adversarial queries. Internal metrics (Hid.Cos, Rank) confirm that AdaPop achieves genuine parametric disruption rather than surface-level suppression. The inclusion of ablation studies on the popularity proxy and sensitivity analysis of hyperparameters adds rigor. The results are consistent across models and benchmarks, supporting the claim of generalizability.
The paper provides detailed algorithmic descriptions, hyperparameters, and a link to the code repository. The use of standard benchmarks (DUET, RWKU) and models facilitates replication. The dependency on external proxies (Wikidata) is clearly defined, and an alternative LLM-as-Judge proxy is provided, enhancing reproducibility for datasets without Wikidata entries.
The primary limitation is the dependency on an external popularity proxy. Wikidata scores are effective for entity-centric factual QA but may not generalize to procedural, creative, or code knowledge. The calibration of the power-law exponents relies on anchor points from specific datasets, which may require adjustment for different data distributions. The evaluation is restricted to LoRA fine-tuning, and full fine-tuning results are not provided, although the authors cite prior work suggesting LoRA is more effective for unlearning.
This work has significant implications for AI safety, privacy, and compliance (e.g., GDPR "right to be forgotten"). By enabling more effective and balanced unlearning, it reduces the risk of retaining harmful or private information while preserving model utility. The insight that external frequency signals can guide unlearning pressure could influence future research in model editing and knowledge management. [One sentence main contribution]. The paper introduces AdaPop, a training-time unlearning method that uses external popularity signals to adaptively weight gradient updates, effectively closing the popularity gap in LLM unlearning. [Comprehensive analysis of the technical contribution, methodology, and significance to the field]. AdaPop represents a significant step forward in LLM unlearning by addressing a critical failure mode of existing methods: the uneven erasure of facts based on their memorization depth. By leveraging external popularity proxies to modulate gradient ascent, the method ensures that deeply encoded facts receive sufficient pressure for removal while rare facts are not over-erased, thus preserving general capabilities. The rigorous evaluation across multiple models and benchmarks, supported by internal representation analysis, provides strong evidence for the method's efficacy. The theoretical analysis of gradient regimes adds depth to the understanding of how unlearning dynamics interact with memorization strength. While dependent on external signals, the approach offers a practical and effective solution for improving the reliability of machine unlearning in real-world applications.
A benchmark score comes from a single phrasing of each problem. That single phrasing is treated as if it stood for the whole space of ways the same problem could be asked, but it does not. We show that rephrasing a problem while keeping its meaning and answer fixed routinely flips a model's answer in both directions, so some failures become successes and some successes become failures. We call this drift. BenchDrift generates meaning-preserving variations of benchmark problems along four axes, namely linguistic, referential, pragmatic, and structural, and measures how often, and why, correctness flips under each. Across eight models and three benchmarks (GSM8K, MMLU, MATH-Hard), we observe that drift is large in both directions. Two findings stand out. First, phrasing sensitivity does not fade as models get better. Instead, it changes sign. Weak models gain more from rephrasing than they lose, while strong models lose far more than they gain. We find that the best models on a benchmark are therefore the ones whose scores depend most on the wording they happened to be given. Second, the models largely agree on which rephrasings cost the most correct answers even though they differ in how much they drift, so fragility belongs to the rephrasing and not to the model. Furthermore, rephrasing breaks answers a model was confident about, whether the problem is made shorter or longer. Code and Data: https://github.com/IBM/BenchDrift/tree/demo-ui
Primary: IBM Research Almaden
All Institutions: IBM Research Almaden
The paper presents a rigorous and timely analysis of LLM fragility to prompt phrasing, introducing a novel framework (BenchDrift) that quantifies bidirectional drift and reveals that stronger models are often more sensitive to wording changes than weaker ones. This finding fundamentally challenges the interpretation of current benchmark leaderboards and provides a concrete methodology for assessing and improving LLM robustness, making it a high-impact contribution to the NLP evaluation community.
The paper introduces BenchDrift, a systematic framework for evaluating LLM robustness to meaning-preserving rephrasing. The methodology is rigorous in its definition of "drift" (bidirectional correctness flips) and its attribution of these flips to specific transformation axes (linguistic, referential, pragmatic, structural). The use of a validator LLM to ensure semantic equivalence before evaluation is a strong methodological choice that addresses a common flaw in adversarial testing. The decomposition of accuracy into "Best," "Reported," and "Worst" cases provides a novel metric for benchmark stability. However, the reliance on LLMs for generation, validation, and judging introduces potential circularity and shared bias, which the authors acknowledge but do not fully resolve with human-in-the-loop validation.
The experiments cover eight models across three major benchmarks (GSM8K, MMLU, MATH-Hard). The findings are significant: drift is large (74.7 pp range on average), and there is a strong negative correlation between model strength and net drift gain (stronger models lose more accuracy on rephrased problems). The analysis of specific transformations (e.g., interrogative expansion causing high negative drift) offers actionable insights. The reliability checks (swapping generator/validator/judge models) show that the results are somewhat robust to the choice of instrument, though the absolute numbers shift. The statistical significance of axis-level differences is supported by permutation tests.
The paper provides a clear description of the pipeline, the taxonomy of transformations, and the evaluation setup. The code and data are released on GitHub, which is a major plus. The use of temperature 0 for target models ensures deterministic outputs for the evaluation phase. The variability in the number of variations per problem (due to validation filtering) is noted, which is a minor reproducibility hurdle but handled transparently.
The primary limitation is the lack of human validation for the semantic equivalence of variations and the correctness of the LLM judge. The authors admit this is a "shared blind spot." Additionally, the study is limited to closed-form benchmarks (math/factual), leaving open-ended generation tasks unexplored. The potential for the generator and judge models to share biases with the target models is also a concern, though mitigated by role-swapping experiments.
This work has significant implications for how LLM benchmarks are interpreted and reported. It challenges the validity of single-phrasing leaderboard scores and suggests that current "state-of-the-art" models may be overfit to specific prompt styles. It encourages the development of more robust evaluation protocols and potentially new training objectives that prioritize invariance to surface-form changes. The paper presents a rigorous and timely analysis of LLM fragility to prompt phrasing, introducing a novel framework (BenchDrift) that quantifies bidirectional drift and reveals that stronger models are often more sensitive to wording changes than weaker ones. This finding fundamentally challenges the interpretation of current benchmark leaderboards and provides a concrete methodology for assessing and improving LLM robustness, making it a high-impact contribution to the NLP evaluation community.
Safety alignment in large language models (LLMs) is largely developed in English, assuming these safeguards generalize across multilingual settings. However, this assumption remains underexplored and exposes a vulnerability in low-resource languages. We investigate cross-lingual safety transfer in four African languages, Twi, Hausa, Amharic, and Swahili, using LoDNA, a new safety dataset that pairs literal translations with culturally localized prompts. To move beyond generation-based evaluation, we propose a latent geometric framework that probes hidden-state refusal representations in LLMs. Our experimental results show that cross-lingual safety transfer is severely limited; harmful prompts retain less than 10% of the English refusal signal across most language-model pairs. Literal and localized prompts are semantically aligned (cosine 0.95-0.996) but drift across layers, suggesting models encode the concepts without routing them to safety mechanisms. These findings demonstrate that current multilingual safety alignment is superficial, providing strong evidence against the assumption of a universal, language-agnostic harm manifold within the specific low-resource languages studied. Warning: This paper contains example data that may be offensive or harmful.
Primary: AIMS Cameroon
All Institutions: AIMS Cameroon, Brown University, Carnegie Mellon University, Data Science for Social Impact, Hanyang University, Imperial College London, Makerere University Center for Artificial Intelligence, University of Ghana, University of Hamburg, University of Pretoria, Wollo University, Bayero University
This paper makes a significant contribution to the field of multilingual AI safety by demonstrating the failure of cross-lingual safety transfer in low-resource African languages through a novel latent geometric analysis framework and the introduction of the LoDNA dataset.
The paper proposes a "Latent Geometric Framework" to evaluate cross-lingual safety transfer by probing hidden states in LLMs. It introduces the LoDNA dataset, extending the Do-Not-Answer dataset to four low-resource African languages (Twi, Hausa, Amharic, Swahili) with both literal and culturally localized prompts. The methodology involves extracting hidden states, defining refusal vectors via mean subtraction of safe/unsafe representations, and measuring alignment using cosine similarity, dot products, and linear probes. The approach is methodologically sound within the interpretability subfield, adapting techniques from English-centric mechanistic interpretability to a multilingual safety context. The distinction between literal and cultural prompts is a novel experimental design choice that isolates semantic/pragmatic drift from cross-lingual mapping failures.
The experiments are extensive, covering four models (Mistral, Llama, Qwen2.5, AfriqueQwen) and four languages. The results consistently show that safety alignment does not transfer well to these low-resource languages, with less than 10% of the English refusal signal retained. The paper provides detailed layer-wise analysis, PCA projections, and drift metrics. The findings are robust across architectures, although Swahili in Llama shows some anomalous transfer. The inclusion of qualitative analysis and behavioral proxies (SLL) strengthens the claims beyond simple geometric metrics. The scale of the dataset and the depth of the geometric analysis are significant contributions.
The authors state that code and datasets will be made publicly available. The methodology is clearly described with mathematical formulations for the geometric metrics. The dataset construction process (translation, native speaker correction, cultural localization) is detailed, allowing for replication of the data creation pipeline. The use of standard open-weight models (Llama, Mistral, Qwen) ensures that the experimental setup is reproducible by other researchers.
The study is limited to 7B-8B parameter models, which may not generalize to larger models (e.g., 70B+) that might have better multilingual capabilities. The geometric framework is observational and correlational; causal interventions (e.g., activation patching) are suggested for future work but not performed. Tokenization issues in low-resource languages (especially Amharic) are acknowledged as potential confounders that may distort geometric analysis. The dataset size, while substantial for low-resource languages, is still limited compared to English benchmarks.
This paper has significant implications for the development of safe and equitable LLMs. It challenges the assumption that English-centric safety alignment generalizes to low-resource languages, highlighting a critical gap in current AI safety practices. The findings suggest that deploying English-aligned models in low-resource regions may lead to unsafe behavior or inconsistent safety boundaries. The LoDNA dataset and evaluation framework provide a valuable resource for the community to benchmark and improve multilingual safety. The work promotes inclusivity in AI research by focusing on underrepresented languages and cultures. This paper makes a significant contribution to the field of multilingual AI safety by demonstrating the failure of cross-lingual safety transfer in low-resource African languages through a novel latent geometric analysis framework and the introduction of the LoDNA dataset.
The prevailing recipe for Vision-Language-Action (VLA) models couples a pretrained VLM with a separately trained flow-matching action expert. This makes the VLM a context encoder rather than a decision-maker. We introduce G0.5, a pretrained autoregressive VLA in which a single transformer decoder emits reasoning and action tokens under a single objective. Three components make this tractable at foundation-model scale: a learnable cross-embodiment action tokenizer that maps heterogeneous robot actions into a shared vocabulary; a native chain-of-thought stream interleaving task decomposition, object grounding, and action hints with action tokens; and a visual memory module that injects multi-second history through the vision encoder. Because reasoning and action share a single set of weights, the pretrained VLM's capabilities carry over to physical behavior: the model follows instructions closely, and prompts directly steer action granularity, task horizon, and out-of-distribution scene handling without further training. Pretrained on a large collection of robot datasets together with VQA samples, G0.5 surpasses state-of-the-art models across 7 independent regimes: real-world fine-tuning on R1lite and R1pro robots (76.7\% vs.\ 53.3\% for $π_{0.5}$ and 24.4\% for GR00T-N1.7), the 2025 BEHAVIOR Challenge on 50 long-horizon household mobile manipulation tasks using a generalist policy (31.4\% vs.\ 26.3\% for $π_{0.5}$ and 26.1\% for the challenge winner), DROID post-training followed by zero-shot transfer to an unseen environment and objects (82.5\%), a language-following Pick-and-Place benchmark, LIBERO (98.9\%), RoboTwin 2.0 (93.3\%), and SimplerEnv-Bridge (87.3\%).
Primary: Tsinghua University
All Institutions: Tsinghua University, BAAI (Beijing Academy of Artificial Intelligence)
G0.5 presents a compelling unified autoregressive framework for Vision-Language-Action models, demonstrating that integrating reasoning and action generation within a single transformer decoder can outperform specialized hybrid architectures across diverse robotic benchmarks, thereby advancing the state of generalist robot policies.
The paper proposes G0.5, a Vision-Language-Action (VLA) model that unifies reasoning and action generation within a single autoregressive transformer decoder. This contrasts with the prevailing "VLM-as-encoder" paradigm where a separate flow-matching or diffusion expert predicts actions. Key architectural innovations include a cross-embodiment action tokenizer to handle heterogeneous control spaces, a native chain-of-thought (CoT) stream that interleaves reasoning tokens with action tokens, and a visual memory module for long-horizon context. The approach leverages the in-context learning and instruction-following capabilities of pretrained VLMs directly for physical control, arguing that the VLM backbone is underutilized in current VLA architectures. The methodology is theoretically sound and aligns with the broader trend of scaling VLMs for embodied AI.
The evaluation is extensive, covering 7 independent regimes including real-world fine-tuning on R1lite/R1pro robots, the 2025 BEHAVIOR Challenge, DROID zero-shot transfer, and several simulation benchmarks (LIBERO, RoboTwin, SimplerEnv). G0.5 demonstrates strong performance, often surpassing specialized baselines like $\pi_{0.5}$ and GR00T-N1.7. Notably, it achieves high success rates on long-horizon household tasks in the BEHAVIOR Challenge with minimal post-training (1 epoch). The results suggest that the unified autoregressive approach effectively transfers VLM capabilities to robotics without significant degradation of language understanding. However, some tasks (e.g., assembling gift baskets, boxing books) show low success rates across all models, indicating persistent challenges in complex manipulation.
The paper provides detailed descriptions of the architecture, training data (robot datasets + VQA), and training objectives. The inclusion of a cross-embodiment tokenizer and specific CoT formatting suggests that the codebase is structured for reproducibility. The authors mention releasing the pretrained backbone, which is a positive step. However, the exact hyperparameters for the "large collection" of robot datasets and the specific VQA samples used are not fully detailed in the provided text, which may require consulting the full paper or code release for exact replication. The use of standard benchmarks (LIBERO, DROID) aids in comparative reproducibility.
The authors acknowledge several limitations: weak performance on drawer-insertion and semi-transparent cabinet tasks due to sensing limits; visual memory is limited to seconds of history, restricting long-horizon planning; lower-body actuation is not evaluated separately. Additionally, the model's performance on certain BEHAVIOR tasks is comparable to or slightly lower than the 4-checkpoint winner, suggesting that while efficient, it may not yet match the peak performance of heavily optimized multi-checkpoint ensembles. The reliance on VQA data for pretraining might introduce biases present in those datasets.
This work has significant implications for the field of embodied AI, potentially shifting the paradigm from hybrid VLA architectures to unified autoregressive models. By demonstrating that pretrained VLMs can serve as effective action generators, it lowers the barrier to entry for integrating advanced language reasoning into robotic control. The open release of the backbone could accelerate research in generalist robot policies. However, the increased capability of autonomous robots also raises safety and ethical considerations regarding deployment in human-centric environments. G0.5 presents a compelling unified autoregressive framework for Vision-Language-Action models, demonstrating that integrating reasoning and action generation within a single transformer decoder can outperform specialized hybrid architectures across diverse robotic benchmarks, thereby advancing the state of generalist robot policies.
Action verbs describe not only the physical outcomes of actions, but also how those actions are performed. Yet action representations in vision-language-action models (VLAs) are typically optimized for reconstruction under L1/L2 losses in raw action space, where numerical proximity need not reflect linguistically meaningful distinctions. On BridgeV2, we show that action trajectories contain verb-grounding information beyond visual state changes, and that reconstruction-only discrete tokenization systematically erodes this information. To address this problem, we introduce SALT, a Semantically ALigned action Tokenizer that augments a VQ-VAE-style tokenizer with an auxiliary objective requiring a frozen vision-language model to recover the episode instruction from quantized action latents. Policies trained with SALT achieve 71.9% average success in SimplerEnv, compared with 42.7% for a reconstruction-only VQ-VAE tokenizer and 31.2% for FAST. SALT also develops verb-specialized codes while maintaining reconstruction fidelity. These results show that robot action trajectories provide a source of language grounding and that preserving this structure in action representations can substantially improve language-conditioned control.
Primary: Stanford University
All Institutions: Stanford University
SALT introduces a semantically aligned action tokenizer that significantly improves language-conditioned robotic control by preserving verb-grounding information in discrete action representations, offering a simple yet effective upgrade to existing VLA architectures.
The paper introduces SALT (Semantically ALigned action Tokenizer), a novel approach to action tokenization in Vision-Language-Action (VLA) models. The core innovation is augmenting a standard VQ-VAE tokenizer with an auxiliary generative objective: a frozen Vision-Language Model (VLM) must reconstruct the episode instruction from the quantized action latents. This forces the discrete action codes to preserve linguistically meaningful distinctions (verb grounding) that are typically lost in reconstruction-only objectives. The methodology is theoretically sound, leveraging the representational capacity of frozen LMs as a semantic probe/teacher. It addresses a specific, under-explored bottleneck in VLAs: the disconnect between the discrete action vocabulary and the semantic intent of the instruction. The approach is elegant in its simplicity and modularity, requiring no changes to the downstream VLA architecture.
The experimental evaluation is rigorous and well-designed. The authors first establish the premise that action trajectories contain unique verb-grounding information beyond visual goals (Diagnostic 1). They then demonstrate that standard tokenizers (Bin, VQ-VAE, FAST) systematically erode this information (Diagnostic 2). The main results on SimplerEnv show a substantial improvement in task success (71.9% for SALT vs. 42.7% for VQ-VAE and 31.2% for FAST). The analysis goes beyond simple success rates, providing detailed ablations on code-verb co-occurrence, showing that SALT develops specialized codes for specific verbs, whereas baselines produce diffuse or generic codes. The use of mutual information estimation and probe accuracy provides strong quantitative backing for the qualitative claims. The comparison is fair, controlling for architecture and compute.
The paper provides extensive details on the experimental setup, including dataset processing (BridgeV2), model architectures (miniVLA, Qwen2.5-0.5B), and training hyperparameters. The appendices contain detailed descriptions of the probe architectures, MI estimation methods, and feature extraction pipelines. The compute budget is clearly stated. The authors mention that SALT checkpoints and probe code will be released, which supports reproducibility. The methodology is described with sufficient mathematical precision to be reimplemented.
The authors acknowledge several limitations. The experiments are conducted on a single dataset (BridgeV2) with a limited verb vocabulary (17 classes). The evaluation is in simulation (SimplerEnv), and real-robot generalization is not tested. The method currently applies only to learnable tokenizers (VQ-VAE style), not fixed discretization schemes. The causal link between semantic alignment and policy performance is not fully established, though the correlation is strong. These are standard limitations for this type of work but are important to note.
This work has significant implications for the field of embodied AI and robotics. By demonstrating that action representations can and should be aligned with language semantics, it provides a new design principle for VLAs. The improvement in sample efficiency and task performance suggests that such alignment can make robot learning more robust and interpretable. The method is generalizable to other VLA architectures and datasets, potentially becoming a standard component in future VLA pipelines. It also contributes to the broader understanding of how language is grounded in physical action, bridging NLP and robotics. SALT introduces a semantically aligned action tokenizer that significantly improves language-conditioned robotic control by preserving verb-grounding information in discrete action representations, offering a simple yet effective upgrade to existing VLA architectures.
World-action models (WAMs) predict the future to act better, but nearly all of them predict only RGB latents, trained purely for pixel reconstruction, with no explicit signal for the 3D geometry or object semantics manipulation needs. We find a surprising free lunch: the same frozen video-generation VAE that encodes RGB also encodes 3D pointmaps almost losslessly, with no pointmap-specific training at all. This lets us supervise Flex-$π$, a 6B-parameter WAM, on 3D geometry and object-centric DINO semantics alongside RGB, at no cost in new sensors, new pre-training, or inference latency. Every visual signal is projected into this shared latent space and denoised jointly with actions inside a Mixture-of-Transformers backbone; per-stream dropout with cross-modality forcing then lets a single trained checkpoint run on any subset of these streams, from a fast action-only mode to full joint generation. The result is a policy that is exceptionally demonstration-efficient and generalizes well, beating the strongest baselines by up to 2-7$\times$ on dexterous, precise, real-world bimanual manipulation tasks both in and out of distribution, all while running faster than $π_{0.5}$. Our project website: https://flex-pi.github.io/
Primary: University of Washington
All Institutions: University of Washington, Toyota Research Institute
The paper introduces Flex-$\pi$, a novel World-Action Model that leverages the implicit 3D and semantic encoding capabilities of frozen video-generation VAEs to create a flexible, multi-modal policy for robotic manipulation, demonstrating significant gains in efficiency and generalization on real-world hardware.
The paper proposes Flex-$\pi$, a 6B-parameter World-Action Model (WAM) that integrates RGB, 3D pointmaps, and DINO semantics into a shared latent space. The core methodological innovation is the observation that a frozen video-generation VAE (likely Sora-like or similar) encodes 3D geometry and high-level semantics "almost losslessly" alongside RGB. This allows for multi-stream supervision without new sensors or pre-training. The architecture uses a Mixture-of-Transformers backbone with per-stream dropout and cross-modality forcing, enabling a single checkpoint to run in various modes (action-only, joint generation, etc.). This is a significant architectural shift from standard RGB-only or RGB-D specific policies, leveraging existing large-scale video priors for robotic control.
The evaluation focuses on real-world bimanual manipulation tasks, both in-distribution and out-of-distribution. The results claim a 2-7x improvement over strongest baselines in demonstration efficiency and generalization. The model also runs faster than $\pi_{0.5}$ in action-only mode. The inclusion of Libero-plus experiments provides a comparative benchmark, though the authors note that baselines with more pre-training data can slightly outperform Flex-$\pi$, suggesting that data scale remains a critical factor. The real-world hardware results are the strongest component, addressing the sim-to-real gap effectively.
The paper provides a project website and acknowledges compute resources. The claim of "no new pre-training" suggests the method relies on fine-tuning a large base model, which aids reproducibility if the base model is open. However, the specific details of the "cross-modality forcing" and the exact VAE used (implied but not named in the abstract) need to be scrutinized in the full text for exact reproducibility. The use of a 6B parameter model requires significant compute, which may limit independent replication by smaller labs.
The authors explicitly state that the model takes longer to converge (at least 10 epochs) due to the complexity of joint generation. Furthermore, the full joint generation mode is slower than parameter-comparable Vision-Language Actions (VLAs). The performance gap in Libero-plus indicates that semantic reasoning capabilities, while improved, may still lag behind specialized VLMs when data scale is significantly higher for the baseline.
This work bridges the gap between large-scale video generation models and robotic control, potentially democratizing access to high-performance policies by leveraging frozen, pre-trained visual priors. It reduces the dependency on expensive, synchronized multi-modal sensor data collection for robotics, as 3D and semantic information can be derived from standard RGB video via the shared latent space. This could accelerate the development of generalist robot policies. The paper introduces Flex-$\pi$, a novel World-Action Model that leverages the implicit 3D and semantic encoding capabilities of frozen video-generation VAEs to create a flexible, multi-modal policy for robotic manipulation, demonstrating significant gains in efficiency and generalization on real-world hardware.
In expert-parallel (EP) MoE serving, every layer synchronizes at the slowest GPU. Dispatchers balance token counts (EPLB, LPLB, UltraEP) or activated-expert counts (METRO), assuming expert time is linear in one. Measurements on two datacenter GPU generations show it is neither: below $\nstar\!\approx\!156$--$168$ tokens, HBM weight streaming dominates---cost attaches to \emph{activated replicas}, not tokens; above it, grouped GEMM rounds tokens to 128-tile $M$-tiles, so \emph{splitting} an expert adds padded compute. A max-affine profile $t=\max(a+bG,\,c+βN)$ captures both regimes. Realistic decode batches hold hot experts in the linear regime and cold in the flat \emph{simultaneously}; recorded batches show proxy dispatches differ by $1.4$--$1.6\times$ in modeled block time (p95 up to $1.7\times$), and \emph{which} proxy wins flips with the regime. We formalize per-batch dispatch as a fixed-charge makespan problem---NP-hard on two fully replicated GPUs, polynomial in degenerate limits---and present \sys{}, a makespan-aware dispatcher solving it in milliseconds off the critical path; its SGLang integration runs out-of-process and fuses dispatch with count collection into one in-graph kernel. Anchored by an 8-GPU Testbed~A microbenchmark, \sys{} stays within 1\% of the best fixed baseline everywhere and wins by up to $15.5\%$ where regimes mix. End-to-end on Testbed~B, Qwen3-235B (inside the win region) gains $4$--$6\%$ throughput and cuts p99 latency by ${\sim}15.6\%$; DeepSeek-V3 (outside, communication-dominated) shows only mechanism cost. A phase diagram, not a universal win, is the claim: it predicts both outcomes before deployment.
Primary: KlingAI Research
All Institutions: KlingAI Research
[One sentence main contribution]. TEMPO introduces a makespan-aware, hardware-calibrated load balancer for Expert-Parallel MoE serving that outperforms token- and activation-based proxies by accounting for non-linear memory and compute costs. [Comprehensive analysis of the technical contribution, methodology, and significance to the field]. The paper makes a substantial contribution to ML systems research by rigorously characterizing the non-linear cost structure of MoE expert execution and developing a corresponding optimization framework. The empirical findings regarding the dual-regime cost function are insightful and counter-intuitive to many practitioners, offering a new lens through which to view MoE serving performance. The proposed solution is technically sound, well-evaluated, and addresses a critical bottleneck in scaling MoE models. The honest reporting of limitations and the development of a predictive phase diagram enhance the paper's value to the community.
The paper proposes a sophisticated load-balancing strategy for Expert-Parallel (EP) Mixture-of-Experts (MoE) serving, challenging the prevailing assumption that expert execution time is linear with respect to token count. By empirically demonstrating a two-regime cost function—dominated by HBM weight streaming (flat cost) below a threshold and grouped GEMM tile padding (linear cost) above it—the authors formulate a fixed-charge makespan optimization problem. They introduce 'TEMPO', a dispatcher that solves this NP-hard problem using a heuristic ensemble (cost-aware seeding, augmenting chains, local search) that runs out-of-process to avoid critical-path latency. The methodology is rigorous, combining black-box microbenchmarking, theoretical complexity analysis, and a novel phase diagram to predict when adaptive dispatching yields benefits. The integration with SGLang via fused CUDA kernels is a strong systems contribution.
The evaluation is comprehensive and multi-layered, moving from microbenchmarks on an 8-GPU testbed to end-to-end serving experiments on flagship models (Qwen3-235B, DeepSeek-V3). The authors provide a "phase diagram" that correctly predicts the win region for their method, validating their core hypothesis. They demonstrate significant throughput gains (up to 15.5% in simulation, 4-6% end-to-end) and latency reductions (15.6% p99) in the predicted regime, while honestly reporting no gain (and slight overhead) in communication-dominated regimes. The ablation studies and comparison against state-of-the-art proxies (LPLB, METRO, EPLB) are thorough. The use of real-world traces and realistic traffic patterns strengthens the validity of the results.
The paper provides detailed descriptions of the cost model calibration, the solver algorithm, and the SGLang integration. The microbenchmark setup is clearly defined, and the code integration points are specified. However, the specific "Testbed A" and "Testbed B" hardware configurations are anonymized in the text provided, which may hinder exact replication of the microbenchmark numbers, though the methodology is clear. The reliance on specific kernel implementations (DeepGEMM) and the proprietary nature of some model weights (Qwen3, DeepSeek-V3) present minor barriers, but the core logic is reproducible.
The authors explicitly acknowledge that their method is not a universal win; it incurs overhead in communication-dominated regimes or when placement is already optimal. The method's effectiveness is tied to the specific hardware characteristics (HBM bandwidth, tile sizes) and model sizes; it may not generalize to smaller experts or different GPU architectures without recalibration. The NP-hardness of the underlying problem means the heuristic solution, while fast, is not guaranteed to be optimal, although the paper provides additive approximation guarantees.
This work significantly advances the field of LLM serving systems by providing a principled, hardware-aware approach to MoE load balancing. It corrects a fundamental misconception in the field regarding the linearity of expert cost. The phase diagram and cost model serve as valuable tools for system designers to understand the trade-offs in MoE deployment. The out-of-process, zero-overhead integration pattern is also a valuable contribution to systems engineering for ML. [One sentence main contribution]. TEMPO introduces a makespan-aware, hardware-calibrated load balancer for Expert-Parallel MoE serving that outperforms token- and activation-based proxies by accounting for non-linear memory and compute costs. [Comprehensive analysis of the technical contribution, methodology, and significance to the field]. The paper makes a substantial contribution to ML systems research by rigorously characterizing the non-linear cost structure of MoE expert execution and developing a corresponding optimization framework. The empirical findings regarding the dual-regime cost function are insightful and counter-intuitive to many practitioners, offering a new lens through which to view MoE serving performance. The proposed solution is technically sound, well-evaluated, and addresses a critical bottleneck in scaling MoE models. The honest reporting of limitations and the development of a predictive phase diagram enhance the paper's value to the community.
A faster storage device should make serving faster. We find the opposite. High-Bandwidth Flash (HBF) stacks NAND behind a wide, package-local interface, promising flash-scale capacity with far lower read latency and higher bandwidth than an SSD. The obvious move is to keep an SSD-style Mooncake KV-offloading stack and swap in HBF underneath. We built that system and measured it: an extended TokenSim, four complete two-hour Qwen-Bailian production traces, five dense and mixture-of-experts models, and H100/B200 profiles. The upgrade backfires. Average end-to-end latency rises 2--5.5$\times$ and maximum SLO goodput falls 1.1--2.7$\times$ across H100 and B200, so the faster device yields a slower system. A cost-benefit model explains the paradox: a faster far tier pays off only when read I/O is the bottleneck, reads outweigh writes, and delivered bandwidth is sustainable. Transient KV violates all three at once. Buying flash through the package costs GPU near-tier capacity and bandwidth, while HBF's own read/write latency barely matters: scaling it 3.75$\times$ moves latency less than 1\%. Worse, the two-tier hierarchy keeps reuse in the near tier and hands HBF a relentless write-heavy stream. Writes outnumber reads on every trace, so a 3D-ICE model shows the stack hits its thermal limit well below peak bandwidth, and a TLC tier wears out sooner than the SSD pool it replaced. The device is fine; the drop-in deployment is not. HBF sucks as an SSD replacement for transient KV, but earns its place in LLM serving when used selectively with reuse-aware placement, write budgeting, and thermal coordination.
Primary: Peking University
All Institutions: Peking University, Fudan University
This paper provides a critical, counter-intuitive evaluation of High-Bandwidth Flash (HBF) in LLM serving, demonstrating that a drop-in replacement for SSD-based KV offloading significantly degrades performance due to system-level bottlenecks in near-tier capacity, write-heavy traffic patterns, and thermal limits. By establishing a rigorous cost-benefit framework and validating it against production traces and hardware models, it offers essential guidelines for the future co-design of memory hierarchies in AI infrastructure.
The paper employs a rigorous, multi-faceted methodology combining simulation (extended TokenSim), production trace replay (Aliyun Qwen-Bailian), and hardware modeling (3D-ICE thermal model). It systematically isolates variables by comparing SSD baselines against projected HBF-1 and HBF-2 architectures, separating media performance from system-level trade-offs (near-tier capacity loss). The introduction of a cost-benefit model with three falsifiable conditions (C1, C2, C3) provides a strong theoretical framework for evaluating storage tiers in LLM serving.
The evaluation is comprehensive, covering five models (dense and MoE), four production traces, and two GPU platforms (H100, B200). The results are counter-intuitive and significant: HBF integration increases latency by 2-5.5x and reduces goodput. The paper provides detailed breakdowns of why this occurs (thermal throttling, write-heavy streams, near-tier capacity bottlenecks), supported by per-tier byte counters and thermal simulations. The use of real production traces adds substantial validity over synthetic workloads.
The paper provides a link to the extended TokenSim repository. It details the simulation parameters, trace sources (anonymized but described), and hardware models. While HBF is projected hardware, the parameters are sourced from roadmaps and academic models (HAVEN), making the study reproducible in terms of simulation logic and assumptions.
The primary limitation is that HBF is not yet a commercial product; results are based on projections and simulations. The thermal and endurance models are approximations. The paper acknowledges that the architecture comparison changes GPU-local memory, so it specifically tests the "drop-in" SSD replacement scenario, which may not represent all possible HBF integrations.
This paper has significant implications for the design of future LLM serving infrastructure. It challenges the naive assumption that faster storage always yields faster serving, highlighting the importance of system-level co-design (thermal, endurance, near-tier capacity). It guides researchers and engineers on when HBF is appropriate (read-heavy, stable objects) and when it is detrimental (transient KV), influencing future hardware and software co-design for AI systems. This paper provides a critical, counter-intuitive evaluation of High-Bandwidth Flash (HBF) in LLM serving, demonstrating that a drop-in replacement for SSD-based KV offloading significantly degrades performance due to system-level bottlenecks in near-tier capacity, write-heavy traffic patterns, and thermal limits. By establishing a rigorous cost-benefit framework and validating it against production traces and hardware models, it offers essential guidelines for the future co-design of memory hierarchies in AI infrastructure.