AI/ML arXiv cs.AI

Cost-Governed RAG: Unified Per-Tenant Cost Attribution Across Retrieval and Generation in Multi-Tenant LLM Systems

Multi-tenant Retrieval-Augmented Generation (RAG) systems suffer from a significant governance gap: while large language model (LLM) generation costs are metered precisely per token, the associated retrieval infrastructure—including vector memory, similarity computation, and embedding API calls—remains an unattributed, shared cost. This limitation leads to invisible cross-subsidization among tenants, complicating enterprise billing and resource allocation. To address this, researcher Navnit Shukla introduced "Cost-Governed RAG" in a paper published on arXiv (cs.AI). Designed for database engineers, infrastructure architects, and systems researchers, this architecture provides a unified observability stack that enables joint, per-tenant cost attribution across the entire embedding, retrieval, and generation pipeline.

The core technical mechanism driving this architecture is the integration of a multi-tenant LLM governance gateway with "TurboVec," a codebook-oblivious vector index. Unlike traditional graph-based vector indexes that suffer from non-linear memory overhead, TurboVec utilizes a deterministic, closed-form memory formula. This mathematical determinism allows the system to calculate near-exact retrieval costs for each tenant. By leveraging a formalized three-layer cost model and codebook-oblivious quantization, the architecture also mitigates the security risk of shared-codebook data leakage inherent in trained quantizers. When evaluated on Snowpark Container Services with a simulated workload of 10 million vectors across 100 tenants under a log-normal size distribution, the system achieved a remarkable 99.96% end-to-end cost attribution accuracy. Crucially, this level of precision introduces minimal performance impact, keeping telemetry overhead below 0.04% of query latency while reducing retrieval infrastructure costs by 3.1 to 9.0 times compared to managed vector database services.

This work shifts the paradigm of enterprise RAG deployment from coarse-grained approximation to precise, deterministic cloud financial operations (FinOps). By proving that retrieval-layer costs can be audited and attributed with negligible performance penalties, it paves the way for fairer multi-tenant commercial models and more robust data isolation boundaries. Future enterprise systems may build upon these codebook-oblivious indexing methods to enforce strict compliance and budget policies dynamically at the query-routing level. This analysis is based on the published abstract of the research paper.

AI/ML arXiv cs.AI

Function-Aware Fill-in-the-Middle as Mid-Training for Coding Agent Foundation Models

This research introduces Function-Aware Fill-in-the-Middle (FIM) as a mid-training objective for enhancing the capabilities of coding agent foundation models. The core contribution lies in bridging the gap between standard left-to-right code generation and the complex, interactive reasoning required by coding agents, particularly when integrating external tool outputs. The problem it addresses is that typical pre-training on code, which progresses sequentially, inadequately prepares models for the non-sequential nature of agentic workflows where intermediate results from tools must be incorporated into ongoing code generation. The authors, Yubo Wang and colleagues from unspecified institutions and labs, have published this work on arXiv, targeting software engineers and AI researchers focused on agentic AI and code generation.

The work is propelled by two key technical ideas. Firstly, it draws an analogy between the action-observation-continuation loop of coding agents and the structure of function calls in code, where arguments are bound, values are returned, and downstream code is conditioned on these returns. This structural isomorphism is exploited by masking functions during mid-training. Secondly, a novel self-supervised objective, function-aware FIM, is employed. This objective involves masking functions identified through program dependency graph analysis, guided by a complexity-inferability double criterion, to encourage the model to learn how to predict missing function bodies or contexts.

The results demonstrate significant improvements on agent benchmarks like SWE-Bench-Verified and SWE-Bench-Lite across different model sizes (Qwen2.5-Coder-Instruct 7B/14B and Qwen3-8B), even when using diverse post-training pipelines such as R2E-Gym and SWE-Smith. Crucially, this mid-training approach also mitigates the capability erosion observed in agentic post-training pipelines, preserving performance on non-agentic coding tasks (LiveCodeBench) and non-coding tool-use benchmarks (tau-bench, BFCL), despite the training corpus being Python-centric.

This research enables the development of more robust and versatile coding agents by providing a more grounded pre-training methodology. It suggests that incorporating inductive biases related to program structure, like function calls, early in the training process can lead to more stable and broadly applicable agentic capabilities. This approach could influence future research by encouraging a shift towards more structurally aware and contextually rich pre-training objectives for code generation models, moving beyond simple sequential completion. The provided content is an abstract only.

AI/ML arXiv cs.AI

Do AI Agents Know When a Task Is Simple? Toward Complexity-Aware Reasoning and Execution

Large language model (LLM) agents operating on complex software engineering tasks frequently suffer from an efficiency crisis: they adopt a "maximum-context-first" approach, over-reading codebase files and dependencies regardless of task simplicity. This turns minor, one-line edits into exhaustive codebase audits, incurring massive token overhead and financial cost. To address this, researchers Junjie Yin and Xinyu Feng introduced a framework for task-aware execution-scope estimation, published on arXiv cs.AI. Designed for researchers and systems engineers building autonomous AI agents, this work seeks to ground agent reasoning and resource consumption in the actual, physical reality of the engineering task at hand.

The authors construct their solution around three core technical mechanisms. First, they formalize the concept of minimum-sufficient execution and define the Agent Cognitive Redundancy Ratio (ACRR) to mathematically measure unnecessary information intake. Second, they propose the E3 (Estimate, Execute, Expand) paradigm. Under E3, an agent estimates an initial, minimal operating boundary, attempts a minimum viable path of execution, and only expands its scope if downstream verification fails. Finally, to evaluate this paradigm, the authors introduce MSE-Bench, a benchmark of 121 simulator-controlled edits, alongside LLM-Case, a real-world testing harness that evaluates a live GPT-4o agent against actual project test suites.

The performance gains of the E3 framework are substantial. On MSE-Bench, E3 maintained a 100% success rate while reducing financial costs by 85%, total token consumption by 91%, and the volume of inspected files by 92%. In real-world testing via LLM-Case, the policy successfully constrained the agent to the leanest execution paths without sacrificing code correctness. Moving forward, this research paves the way for "engineering-grounded AI" (EGAI)—a paradigm where agents dynamically scale their computational and cognitive budgets to match task complexity. This shift could drastically lower the operational costs of deploying autonomous agents at scale and prevent rate-limiting bottlenecks in production developer tools. Note that this analysis is based on the published abstract and metadata of the research paper.

AI/ML arXiv cs.AI

Mathematics of Data Science

Afonso S. Bandeira, Amit Singer, and Thomas Strohmer’s book-length manuscript, Mathematics of Data Science, published on arXiv, provides a rigorous, foundational framework for the mathematical principles underpinning modern data science and machine learning. Designed for advanced researchers, graduate students, and mathematically inclined software engineers, the work bridges the gap between heuristic-driven empirical engineering and rigorous mathematical theory. By consolidating disparate mathematical fields—such as high-dimensional geometry, probability theory, and optimization—into a unified pedagogical resource, the authors address the critical need for a formal mathematical vocabulary in an industry often dominated by trial-and-error methodologies.

The curriculum centers on several core technical pillars essential for analyzing modern, high-dimensional datasets. First, it addresses the geometry of high dimensions, contrasting the curses and blessings of dimensionality through the lens of measure concentration and Gaussian analysis. Second, the manuscript systemizes dimensionality reduction, covering both linear methods like random projections and Principal Component Analysis, and non-linear paradigms including diffusion maps and graph Laplacians. Finally, the text dives deep into the mathematics of recovery and optimization, providing rigorous foundations for low-rank matrix recovery, compressive sensing, and the theoretical underpinnings of deep learning. These mathematical tools collectively explain why and when high-dimensional models generalize effectively despite overparameterization.

This comprehensive formalization enables practitioners to transition from empirical model tuning to principled, theory-driven architecture design. By establishing rigorous bounds on matrix concentration and graph-based clustering, the work provides the theoretical guarantees necessary for safety-critical machine learning applications. Going forward, this unified mathematical treatment is poised to accelerate research into interpretable AI, robust optimization, and efficient high-dimensional representation learning. It is important to note that this analysis is based on the book's arXiv abstract and table of contents rather than the full publication text.

AI/ML arXiv cs.AI

Exact and Certified Data Shapley for Weighted k-Nearest-Neighbor Regression and Soft-Label Prediction

Data valuation via Data Shapley has become a cornerstone for identifying influential training points, with k-nearest-neighbor (KNN) formulations serving as the primary practical implementation in frameworks like pyDVL and OpenDataVal. While exact polynomial-time algorithms existed for unweighted KNN and weighted KNN classification, weighted KNN regression and soft-label prediction remained computationally intractable, requiring an exponential $O(N^K)$ brute-force search. This barrier stemmed from the mathematical structure of weighted regression: the prediction is a ratio of two coalition-dependent sums, which destroys the additive, threshold, and duplication structures leveraged by prior polynomial algorithms. In a preprint submitted to IEEE Transactions on Knowledge and Data Engineering, researcher Zongye Lyu addresses this gap by introducing the first exact and certified Data Shapley algorithms for weighted KNN regression and soft-label prediction.

The core technical contribution relies on a pseudo-polynomial-time exact algorithm formulated as a counting dynamic program. This algorithm tracks a joint integer state representing both the sum of weights and the sum of weighted targets, successfully bypassing the ratio-induced non-additivity at a fixed lattice precision. For continuous weights and target variables where exact lattice representation is impractical, the work introduces a certified Fully Polynomial-Time Approximation Scheme (FPTAS) that provides machine-checkable, per-value error bounds. To map the theoretical boundaries of the problem, the author establishes the underlying complexity landscape, demonstrating an unconditional lower bound of $\Omega(D_w)$ on output size alongside access-model hardness results. Empirically, the exact algorithm achieved zero mismatch across over 12,000 adversarial test cases, and the FPTAS error certificates remained unviolated throughout tens of thousands of validation checks.

This work is highly relevant to machine learning researchers and software engineers designing data curation, auditing, or quality-assurance pipelines. By proving that Monte Carlo approximations struggle to reliably reproduce exact data rankings—failing to replicate the top 10% data valuation ranking even after thousands of utility evaluations—this research establishes the necessity of deterministic, exact formulations for critical tasks like mislabel detection. Going forward, the open-source release of the CPU-only library and the first exact weighted-regression ground truth will enable developers to rigorously audit heuristic estimators and deploy highly dependable data-cleaning workflows. This analysis is based on the preprint's published abstract and metadata.

AI/ML arXiv cs.AI

Sparse Inter-Layer Dependencies of Transformer FFN Neurons

The Feedforward Network (FFN) blocks of Transformer architectures contain the majority of model parameters, yet understanding their internal dynamics remains difficult because the residual stream mixes representations through additive superposition. In the paper "Sparse Inter-Layer Dependencies of Transformer FFN Neurons," published on arXiv by Johannes Knittel and Hanspeter Pfister, the authors address this opacity by demonstrating that the activation of individual FFN neurons relies on highly sparse, structured networks of upstream dependencies. The authors introduce a training-free attribution method that quantifies how much preceding neurons and attention outputs influence a specific downstream target neuron. This work is primarily directed at mechanistic interpretability researchers and deep learning engineers seeking to map, interpret, and optimize the internal routing of large language models.

Two core technical ideas drive the paper’s methodology and findings. First, the proposed attribution method computes the relative influence of upstream components without requiring costly model retraining. When the authors masked the non-influential upstream inputs by replacing them with their average activation values, they found that only a small subset of preceding activations and attention outputs was necessary to preserve the target neuron's activation with high fidelity. Second, this effective sparsity is amplified when accounting for the natural sparsity already present in upstream activations. Crucially, when these neuron-specific masks are applied across all layers simultaneously—allowing the resulting deviations to propagate through the entire network—model perplexity remains largely unaffected at moderate levels of sparsity.

This discovery of sparse inter-layer connectivity within FFNs provides a practical, scalable mechanism for circuit-level interpretability, moving the field beyond isolated neuron analysis toward understanding functional pathways. For performance-focused engineers, identifying these sparse computational paths suggests new avenues for sparse inference, potentially allowing models to bypass inactive or redundant neuron activations during runtime to reduce latency and compute costs. It is important to note that this analysis is based on the published abstract of the paper, which outlines these foundational findings and methods.

Cybersecurity arXiv cs.AI

AutoTrace: From Patches to Triggers via Agentic Interprocedural Exploration

Identifying the exact statement that triggers a software vulnerability—known as trigger localization—is a critical challenge in security engineering, particularly when the root cause lies multiple call layers away from the patch itself. Traditional static analysis and standard language models struggle with this interprocedural causal reasoning. To bridge this gap, Arastoo Zibaeirad, Marco Vieira, and Thomas Zimmermann introduced AutoTrace in a paper published on arXiv in July 2026. Designed for security researchers, static analysis developers, and software engineers, AutoTrace is an agentic framework that localizes vulnerability triggers by combining the reasoning capabilities of large language models with the formal rigor of graph-based program analysis.

The core of AutoTrace lies in its hybrid, systematic exploration of a Code Property Graph. Instead of relying on ungrounded model predictions, AutoTrace deploys LLM agents to navigate the graph layer by layer, guided by deterministic admissibility gates. These gates function as strict verification boundaries, requiring explicit, graph-backed evidence before any statement can be formally reported as a trigger. This mechanism effectively eliminates model hallucination and ensures both intra- and interprocedural accuracy. Evaluated on the InterPVD benchmark, AutoTrace achieved 75.0% VulnHit and 80.8% FuncHit, establishing a new state of the art in the field.

Beyond localization, the authors leveraged AutoTrace's underlying machinery to construct SinkTrace-Bench, a high-fidelity dataset containing 1,542 verifier-confirmed, balanced vulnerable and safe code samples. Each sample maps a complete source-to-sink causal chain from attacker-controlled input to the unsafe operation. Benchmarking on SinkTrace-Bench reveals that even frontier LLMs struggle to distinguish these closely matched safe and vulnerable pairs. By formalizing trigger exploration as a guided graph-search problem, this work paves the way for more dependable, automated vulnerability triage tools and provides a rigorous benchmark to drive the next generation of causal-reasoning AI in software security.

Please note that this analysis is based on the published abstract and metadata of the research paper.

AI/ML arXiv cs.AI

Track, Rank, Crack: Epistemic Working Memory Scales Multi-Hop Reasoning in Language Agents

"Track, Rank, Crack: Epistemic Working Memory Scales Multi-Hop Reasoning in Language Agents," a paper by Ning Liu published on arXiv (cs.AI) in July 2026, introduces SLEUTH, an architecture designed to mitigate context dilution in multi-hop reasoning agents. As language agents execute sequential reasoning and tool-use steps, their internal investigative state traditionally remains implicit within an expanding context window. Consequently, early discoveries become buried under later retrieval data, causing a sharp degradation in reasoning performance even when individual steps are simple. SLEUTH solves this by implementing an explicit, structured epistemic working memory. This framework is highly relevant to AI researchers and software engineers building autonomous systems that require deep, multi-step planning and information synthesis.

At the core of SLEUTH are three structured components that partition the agent's cognitive state: Confirmed Facts grounded to specific sources, Active Hypotheses ranked by supporting evidence, and Open Questions designed to dictate the agent's immediate next action. By maintaining this explicit state, SLEUTH prevents crucial information from being lost in the context window. On multi-hop benchmarks, the framework outpaces established baselines—including Reflexion, but without requiring multiple episodes. Its performance advantage scales with task complexity, yielding a +5 point gain on HotpotQA and up to +11 points on challenging 4-hop reasoning chains.

Beyond state organization, the research addresses the "evidence sufficiency" problem, where agents repeatedly waste compute budgets on redundant verifications even after locating the correct answer. The author introduces a lightweight commitment trigger to halt execution upon verification. Crucially, this trigger only functions when applied to agents maintaining structured states; unstructured agents show no improvement, isolating organized epistemic state as a prerequisite for reliable execution control. Furthermore, enforcing this structured protocol on weaker models recovers up to +19 points on complex problems.

This work shifts the focus of language agent design from raw parameter scaling to state-organization architectures, suggesting that future developments in autonomous systems will rely heavily on explicit cognitive frameworks to scale reasoning capabilities. Note that this analysis is based on the published abstract of the research paper.

AI/ML arXiv cs.AI

IQA-T1: Tool-based Visual Evidence Reasoning for Image Quality Assessment

Jinjian Wu, Jiaqi Tang, Wei Wei, Yingying Yan, Jianmin Chen, Botong Geng, Lei Zhang, and Qifeng Chen, affiliated with various institutions including the University of Hong Kong, present IQA-T1, a novel framework for image quality assessment (IQA) that addresses limitations in generalization and interpretability, particularly in open-world scenarios. Existing multimodal large language models (MLLMs) for IQA, while capable of textual reasoning, often fail to account for subtle, low-level perceptual degradations due to their reliance on internal representations biased towards semantics. IQA-T1 bridges this gap by integrating explicit perceptual observations, generated by specialized analysis tools, into the MLLM reasoning process.

The core contribution of IQA-T1 lies in its tool-based visual evidence reasoning. During inference, the model autonomously selects and executes appropriate analysis tools. These tools generate structured visual evidence, such as noise residual maps, gradient statistics, and frequency spectra, which are then progressively incorporated into the MLLM's reasoning chain. This approach moves beyond purely semantic understanding to incorporate objective, pixel-level perceptual characteristics. To facilitate this paradigm, the authors constructed Q-Tool, a dataset comprising 11,000 multimodal reasoning chains explicitly grounded in evidence derived from these analytical tools.

The work is intended for researchers and engineers in computer vision, machine learning, and image processing, specifically those working on robust and interpretable IQA systems. The primary technical innovations are the autonomous invocation of specialized analysis tools to extract perceptual evidence and the structured integration of this evidence into MLLM-based reasoning. This allows the model to ground its quality assessments in concrete visual phenomena, enhancing both accuracy and explainability. The authors demonstrate through extensive experiments on seven IQA benchmarks that IQA-T1 achieves state-of-the-art performance and generates interpretable, evidence-backed quality judgments.

This research enables the development of more reliable and trustworthy IQA systems. By explicitly incorporating perceptual evidence, IQA-T1 offers a pathway to overcome the semantic biases of current MLLM approaches, leading to better generalization across diverse image degradation types. Furthermore, the evidence-grounded reasoning facilitates debugging and understanding of model decisions. Going forward, this work may influence the field by promoting the adoption of tool-augmented reasoning for various vision-language tasks requiring a deeper understanding of visual fidelity and perceptual attributes, potentially leading to more human-aligned AI systems. This analysis is based on the provided abstract.

Software Engineering arXiv cs.AI

Multi-Perspective Agentic Program Repair via Code Property Graphs and Temporal Execution Graphs

Automated program repair (APR) has advanced significantly with large language models, yet existing approaches suffer from two main bottlenecks: raw execution traces are often too large and repetitive to fit within model context windows, and repeated patch sampling frequently yields redundant implementations without formulating distinct root-cause hypotheses. To resolve these limitations, researchers Zhili Huang, Ling Xu, and Hongyu Zhang introduced CT-Repair, an agentic APR framework published on arXiv. Designed for software engineering researchers and developers building LLM-based code intelligence tools, CT-Repair shifts the focus from brute-force patch generation to structured, multi-perspective bug analysis.

The core of CT-Repair lies in representing static and dynamic program evidence as queryable abstractions: Code Property Graphs (CPGs) and Temporal Execution Graphs (TEGs). To make runtime traces manageable, the framework utilizes a three-stage filtering pipeline to construct highly compacted TEGs. Empirically, this pipeline narrows the candidate method scope by an average of 94.85% and reduces retained runtime records by 55.97%. Automated reasoning is then driven by three finite-state-machine-guided agents that analyze bugs independently from static, dynamic, and hybrid perspectives. Rather than generating immediate code, these agents generate evidence-grounded repair strategies, which are then instantiated into concrete candidate patches and iteratively refined via execution validation feedback.

Evaluated on 854 Java bugs from the Defects4J v3.0 benchmark, CT-Repair demonstrated superior performance. Under a controlled GPT-5.4-mini configuration, it repaired 388 bugs, outperforming state-of-the-art baselines ReinFix and RepairAgent by 19 and 30 bugs, respectively. The synergy of the three analytical perspectives proved vital, as their union repaired 99 more bugs than any single perspective alone. Ultimately, CT-Repair establishes that combining structured runtime evidence with multi-perspective agentic reasoning can significantly boost repair accuracy without relying on resource-intensive patch-generation budgets. This work enables more sample-efficient, cost-effective, and interpretable AI-driven debugging systems. Note that this analysis is based on the paper's published abstract.

AI/ML arXiv cs.AI

Evidence-Grounded Verified Agentic Reasoning: A Path Toward Eliminating LLM Hallucination in Empirical Inference via Tool-Attested Kernel Proofs

Evidence-Grounded Verified Agentic Reasoning: A Path Toward Eliminating LLM Hallucination in Empirical Inference via Tool-Attested Kernel Proofs (via arXiv cs.AI)

Failed to generate deep-dive analysis.

AI/ML arXiv cs.AI

Silent Alarm: A J-Space Protocol for Comparing Danger Recognition Across Models and Quantization Levels

Roman Prosvirnin, Victor Minchenkov, Alexey Soldatov, and Vladimir Bashun present "Silent Alarm," a novel J-Space protocol published on arXiv (cs.AI) that tackles the limitations of evaluating Large Language Model (LLM) safety. Current methods, often relying on an LLM-as-judge approach, are reactive and only assess observable behaviors post-response, failing to reveal the underlying fragility of safety mechanisms. This work introduces JADR (Jacobian Assessment of Danger Recognition), a protocol designed for software engineers and AI researchers focused on robust and secure AI deployments.

The core contribution is a proactive method to measure a model's internal safety representation before any response is generated. This is achieved by analyzing the model's Jacobian space (J-space), specifically capturing top-k J-space tokens for each prompt and layer. These tokens are then categorized along six behavioral scenario axes, enabling a comparison between internal representations of "danger" prompts (using StrongREJECT) and "safe" control prompts (from XSTest and OKTest). A key technical innovation is the J-space analysis itself, which offers a view into the model's internal state. Another significant aspect is the protocol's independence from external judge models, allowing for direct, local comparisons across different models and, crucially, across various quantization levels (e.g., BF16, INT8, INT4) and fine-tuning modifications. This enables a granular understanding of how these common optimization techniques impact internal safety signals. The final evaluation metric, SafetyAUC, coupled with bootstrap confidence intervals, provides a statistically sound measure of a model's internal safety mechanism strength.

This work matters because it provides a much-needed gap-filling methodology for robust LLM safety evaluation. It moves beyond superficial, post-hoc behavioral checks to probe the internal robustness of safety mechanisms, particularly in the face of quantization, a prevalent practice that can inadvertently degrade safety. The protocol directly benefits developers and researchers working on deployable LLMs, offering a means to rigorously assess and compare safety across model variants and optimization strategies without the overhead or bias of external LLM judges.

Going forward, Silent Alarm enables more principled and quantitative approaches to safety engineering in LLMs. It suggests that internal representation analysis can be as critical as behavioral testing, potentially guiding the development of intrinsically safer models and better understanding the trade-offs introduced by quantization. This could influence the field by shifting focus towards internal model properties for safety assurance, leading to more trustworthy AI systems. The content provided is an abstract only.

AI/ML arXiv cs.AI

PixelLoop: Shortcut Topological Navigation with Pixel-Level Loops

PixelLoop, a novel approach to topological navigation developed by Sarthak Chittawar, Vansh Garg, Aditya Vadali, Krish Pandya, Rohit Jayanti, Sourav Garg, and Madhava Krishna, addresses a fundamental limitation in existing topological map-based robot navigation. The core contribution is the introduction of loop closures directly in pixel space, which function as dense topological shortcuts, fundamentally altering path planning connectivity and cost propagation, rather than simply refining metric poses as in traditional SLAM. This work, published on arXiv and slated for presentation at the 2026 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), is of significant interest to researchers and engineers in robotics and artificial intelligence, particularly those focused on autonomous navigation in complex, unknown environments.

The primary problem PixelLoop solves is the inefficiency and instability of navigation systems that rely on coarse, image-level topological representations, especially when requiring shortcuts or precise path following. Existing methods often struggle to represent fine-grained spatial relationships, leading to suboptimal or failed navigation attempts in scenarios where direct paths become available due to dynamic changes or exploration. PixelLoop fills this gap by leveraging denser topologies grounded in pixel-level relative 3D geometry.

Two crucial technical ideas underpin PixelLoop. First, the concept of "pixel-level loops" enables the system to directly integrate topological shortcuts into the connectivity graph at a much finer resolution than traditional image-to-image loop closures. This allows for more accurate modeling of traversable space and significantly impacts how costs are propagated during pathfinding. Second, the research demonstrates that these dense pixel-level closures lead to costmaps that align precisely with geometric shortest paths, a significant improvement over sparser topological representations. This results in a demonstrated over 35% absolute improvement in Success Rate and SPL (Success weighted by Path Length) in simulated experiments, particularly excelling in scenarios demanding shortcut exploitation. The work has been validated through real-world mobile robot deployments, confirming the practical applicability and robustness of dense pixel-level loop closures for visual navigation.

This advancement has profound implications for future robotic navigation systems. It paves the way for more stable and efficient any-point-to-any-point navigation, enabling robots to dynamically adapt their routes based on real-time environmental understanding at a granular level. The influence on the field is likely to be substantial, pushing the boundaries of topological navigation towards denser, more geometrically aware representations that can inherently model shortcuts and optimize pathfinding with greater accuracy. The presented abstract indicates that the full paper details these advancements.

AI/ML arXiv cs.AI

Attractor Geometry of Transformer Memory: From Conflict Arbitration to Confident Hallucination

Qiyao Liang, Risto Miikkulainen, and Ila Fiete present a geometric framework for understanding two critical failure modes in transformer language models: conflict and hallucination. Published on arXiv, this work addresses the challenge of identifying when models generate incorrect information confidently, a significant issue for reliable AI deployment. The core contribution is a unified explanation of conflict (disagreement between parametric memory and working memory) and hallucination (generating fabricated information) as geometric phenomena within the model's hidden-state space. Learned factual information is conceptualized as attractor basins; conflict arises when working memory disrupts convergence to the correct basin, while hallucination occurs when no such basin exists for the queried information. The frozen output head, trained for next-token prediction, fails to differentiate these states, leading to confident, yet erroneous, outputs.

Crucially, the researchers demonstrate that the "geometric margin"—the hidden state's distance to the nearest attractor basin—serves as a more robust indicator of factual accuracy than output entropy. This is verified through experiments on synthetic tasks with controllable memory injection via LoRA adapters, where geometric margin effectively separates correct recall from hallucinations without rejecting valid outputs. The proposed geometric understanding also holds for pre-trained models on natural language queries, suggesting it's a fundamental aspect of transformer architecture. This research is highly relevant for software engineers and researchers developing and deploying large language models, offering a deeper insight into their limitations and potential pathways for mitigation.

A significant finding is the discovery of a scaling law, $C = \exp(-c/\bar\Delta)$, indicating that the proportion of confident hallucinations can increase with model scale, even as overall error rates decrease. This implies that while models may become more fluent, their capacity for confident falsehoods could be amplified. The work suggests that hidden states encode epistemic state (uncertainty), which is systematically erased by the output head, and this erasure is exacerbated by increasing model scale. This has direct implications for developing more robust uncertainty quantification methods and potentially for novel training strategies that preserve or leverage this epistemic information.

This paper, though marked as withdrawn, outlines important conceptual advances. The proposed geometric interpretation of transformer memory offers a promising avenue for future research into model interpretability, robustness, and safe deployment. It suggests that by analyzing the geometric structure of hidden states, we may be able to build systems that are not only more accurate but also more transparent about their knowledge boundaries.

AI/ML arXiv cs.AI

Evolution Strategies at Scale: LLM Fine-Tuning Beyond Reinforcement Learning

Xin Qiu, Yulu Gan, Conor F. Hayes, and colleagues from multiple institutions present a significant advancement in large language model (LLM) fine-tuning with their work, "Evolution Strategies at Scale: LLM Fine-Tuning Beyond Reinforcement Learning," published at ICML 2026. The core contribution is the demonstration that evolution strategies (ES), a class of gradient-free optimization algorithms, can be effectively applied to full-parameter fine-tuning of LLMs with billions of parameters without requiring dimensionality reduction. This research directly addresses the widely held belief that ES methods do not scale to the massive parameter spaces characteristic of modern LLMs, a gap that has limited their application in this domain.

The significance of this work lies in its potential to offer a powerful alternative to reinforcement learning (RL), which has become the de facto standard for LLM fine-tuning. While RL has achieved state-of-the-art results, it can be prone to issues like reward hacking and training instability, particularly in long-horizon or delayed reward scenarios. By showcasing ES's viability at scale, the authors provide a fundamentally different, backpropagation-free paradigm for post-training LLMs. The intended audience comprises researchers and engineers working on LLM development and deployment, who stand to benefit from a more robust, stable, and potentially less exploitable fine-tuning method.

Key technical insights include the efficacy of ES in navigating extremely high-dimensional parameter landscapes, its ability to outperform RL on several metrics including robustness across different base LLMs, and its improved tolerance for delayed rewards. Furthermore, the research highlights ES's reduced susceptibility to reward hacking, a critical concern in complex fine-tuning tasks. This enables LLMs to be more reliably aligned with desired behaviors.

Looking forward, this research opens avenues for more stable and less brittle LLM fine-tuning. It suggests that ES could become a standard tool in the LLM optimization toolkit, complementing or even replacing RL in certain applications. The broader influence could be a shift in how LLMs are adapted for downstream tasks, fostering greater reliability and potentially unlocking new capabilities by circumventing some limitations inherent in gradient-based methods. This abstract-only analysis is based on the provided information.