AI/ML arXiv cs.AI

Environment-free Synthetic Data Generation for API-Calling Agents

Training large language model (LLM) agents to call APIs effectively typically requires executing those APIs within fully implemented environments backed by live databases. This reliance on physical, stateful sandboxes imposes a major bottleneck on the scalability of training datasets. To bypass this limitation, researchers Seanie Lee, Sanjoy Chowdhury, Chao Jiang, Cheng-Yu Hsieh, Ting-Yao Hu, Alexander T Toshev, Oncel Tuzel, and Raviteja Vemulapalli developed an environment-free synthetic data generation framework, published on arXiv cs.AI. Designed for AI researchers and engineers building agentic workflows, this method leverages LLMs as on-the-fly digital world models, allowing the creation of high-quality trajectory datasets using nothing but raw API specifications.

The pipeline operates through three primary technical mechanisms. First, an LLM analyzes the API specifications to generate diverse, realistic target tasks. Second, a teacher agent attempts to solve these generated tasks iteratively, while a separate LLM simulator acts as the mock environment. This simulator generates coherent, stateful API responses conditioned on the task's context and the cumulative interaction history, effectively modeling state changes without any executable backend. Finally, an LLM judge evaluates and filters the completed trajectories to eliminate low-quality or logically inconsistent data before saving the dataset for fine-tuning.

The researchers validated this approach on the AppWorld and OfficeBench benchmarks, which feature complex information-retrieval and state-changing tasks. Fine-tuning models on the resulting synthetic trajectories yielded substantial performance improvements, proving that effective supervision for API-calling agents can be compiled without ever executing a single line of real API code. Going forward, this paradigm of LLM-based API simulation enables rapid, low-cost training of agents across diverse, custom, or proprietary API ecosystems where building sandboxes is impractical, potentially shifting the agent-training paradigm from environment-dependent testing to pure, specification-driven simulation. Note that this analysis is based on the published abstract of the paper.

AI/ML arXiv cs.AI

Reward-Driven LLM Agent Workflows: Synthesizing POMDP Routing and Self-Correction for Autonomous Decision-Making

The research paper titled "Reward-Driven LLM Agent Workflows: Synthesizing POMDP Routing and Self-Correction for Autonomous Decision-Making," authored by Amez Amanj Ali and Kuo-Kun Tseng and published on arXiv (cs.AI), introduces a novel intelligent agent architecture designed to overcome the limitations of current large language model (LLM) agents. Existing agent frameworks often struggle with long-horizon planning, sparse reward attribution, and error propagation due to their reliance on static prompting and lack of closed-loop feedback. This work addresses these issues by formalizing the agent's decision-making process through a Partially Observable Markov Decision Process (POMDP) framework integrated with real-time self-correction.

Engineered for software developers and AI researchers building robust autonomous systems, the proposed architecture relies on three primary technical mechanisms. First, a POMDP routing mechanism models the agent's interactions under environmental uncertainty, allowing for dynamic pathway adaptation rather than fixed execution. Second, an internal, self-correcting reward model critiques and evaluates candidate decision trajectories before they are executed, mitigating the compounding of errors. Finally, the system integrates multimodal inputs with advanced reinforcement learning techniques—specifically Proximal Policy Optimization (PPO) and value function approximation—to sustain long-term structural memory and optimize planning over extended sequences.

Empirical evaluations on the ALFWorld embodied simulation and WebShop navigation benchmarks demonstrate the architecture's efficacy, yielding a 24.5% absolute improvement in task success rate and trajectory efficiency compared to the standard ReAct framework. Ablation studies confirm that the pre-execution critique module significantly suppresses model hallucination rates. Going forward, this synthesis of reinforcement learning, graph-based memory, and POMDP routing provides a scalable reference design for building highly reliable, multi-step autonomous agents capable of navigating complex, open-ended environments.

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

AI/ML arXiv cs.AI

Lossless but Not Free: An Empirical Anatomy of Speculative Decoding on Consumer Hardware

The research paper "Lossless but Not Free: An Empirical Anatomy of Speculative Decoding on Consumer Hardware," authored by Param Chordiya and published on arXiv, provides a rigorous empirical analysis of speculative decoding performance on consumer-grade hardware. Local, single-stream autoregressive large language model inference is traditionally constrained by memory bandwidth, requiring a full memory-bound forward pass for every generated token. While speculative decoding promises to alleviate this bottleneck by using a smaller draft model to propose candidate tokens for parallel validation by a larger target model, its real-world efficacy on consumer devices has remained poorly understood. This study addresses this gap for machine learning engineers and systems researchers optimizing edge-AI deployments by evaluating a custom, device-agnostic implementation across CUDA, MPS, and CPU backends, specifically benchmarking on Apple-silicon hardware.

The work delivers three primary technical insights. First, it rigorously validates the mathematical equivalence of the speculative implementation against standard autoregressive decoding. This is verified through exact greedy-sequence agreement and a two-sample chi-squared test over approximately 9,200 tokens, yielding a p-value of 0.976 to prove that the output distribution is unaltered. Second, the empirical evaluation reveals that while the optimal hardware-software configuration achieved a 1.61x wall-clock speedup at an optimal candidate length of K=6 tokens, three out of five tested configurations actually experienced deceleration. Third, the author isolates the specific causes of this performance degradation, attributing it to cases where the draft model fails to run significantly faster than a small target model, and to instances where quantized Metal backends execute theoretically parallel verification passes in a serial manner.

These findings redirect the focus of local LLM optimization toward hardware-software co-design. They demonstrate that algorithmic optimization via speculative decoding is not a guaranteed remedy; its success is strictly contingent upon genuine batch-parallel execution capabilities in the underlying hardware kernels and a substantial latency differential between draft and target architectures. Future edge-inference engines must address these low-level serialization bottlenecks to translate speculative algorithms into tangible speedups on consumer chips.

Please note that this analysis is based on the published abstract and metadata of the paper, and further technical implementation details should be cross-referenced with the full text and the author's open-source repository.

AI/ML arXiv cs.AI

Self-Modifying Lean Proof Agents with Verifier-Grounded Benchmark Coevolution

The development of automated theorem provers in Lean typically relies on hand-designed workflows, prompts, and tool integrations that struggle to adapt to increasingly complex mathematical reasoning tasks. To overcome these engineering bottlenecks, researchers Yuqing Li, Zeguan Wu, Yu Gan, and Junyu Liu introduced a self-evolving Lean proof agent framework published on arXiv (cs.AI). This work presents a paradigm shift for software engineers and machine learning researchers working on formal verification, moving from static agent architectures to a coevolutionary system where both the agent's internal workspace and the benchmark it solves evolve in tandem.

At the core of this system is a small, trusted, and fixed runtime environment that wraps a fully mutable workspace containing the agent's proof workflows, prompts, and tool configurations. Unlike conventional self-improving systems constrained by fixed evaluation benchmarks, this framework introduces two critical coevolutionary mechanisms: a mastery-throttled curriculum update and single-anchor recalibration. The mastery-throttled curriculum ensures the champion agent introduces more challenging proof obligations only after achieving mastery over the current task distribution. Meanwhile, single-anchor recalibration maintains score comparability across generations by re-running the champion agent on updated benchmarks. Crucially, the entire self-modification process is constrained by a verifier-grounded loop, meaning any self-rewritten strategy is only retained if it successfully generates Lean-verified proofs and structured, machine-readable proof contexts.

Evaluating the framework over 15 generations demonstrated significant performance gains. On a held-out miniF2F test split, the coevolving agent achieved a 45.1% solve rate, substantially outperforming the 12.7% baseline seed agent and the 32.0% score of an agent evolved against a fixed benchmark. This methodology demonstrates that verifier-grounded self-evolution can systematically discover superior proof-search strategies without human intervention. Going forward, this coevolutionary paradigm could influence the broader field of AI agents by showing how rigid verification environments like compilers or proof assistants can serve as objective functions for open-ended, self-improving code generation systems. Note that this analysis is based on the published abstract of the research paper.

AI/ML arXiv cs.AI

Can AI Agents Really Complete RTL-to-GDS? Lessons from Benchmarking Tool-Interactive EDA Workflows

The automation of electronic design automation (EDA) workflows using Large Language Model (LLM) agents has faced a significant evaluation bottleneck, as benchmarking has historically focused on isolated tasks rather than end-to-end, tool-interactive flows. Addressing this critical gap, researchers Jinyuan Deng, Zhengrui Chen, Xufeng Wei, Tianyu Xing, Chenyi Wen, and Cheng Zhuo published a study on arXiv introducing FluxBench, a systematic evaluation framework for AI agents operating within complete RTL-to-GDS pipelines. This work provides chip design automation researchers, hardware engineers, and AI systems developers with a rigorous platform to evaluate agent capabilities across RTL code generation, iterative repair, tool-feedback utilization, logic synthesis, placement and routing (P&R), and Engineering Change Order (ECO) automation using both open-source and industrial closed-source toolchains.

FluxBench introduces two major technical contributions to the field of AI-driven hardware design. First, it establishes unified prompts, tool environments, and technology library settings to ensure standardized benchmarking across representative, complex scenarios. Second, the researchers introduce "Token ROI," a novel cost-efficiency metric designed to measure the effective improvements in EDA artifacts relative to token consumption and overall runtime cost. The empirical results demonstrate that agent system architecture is a dominant factor in end-to-end performance. Even when utilizing the same underlying foundation model, variations in agent system design led to performance gaps of up to 86.27% and a massive 105.92-fold variance in Token ROI. In an end-to-end RTL-to-GDS case study using the PicoRV32 processor, the authors' specialized system, FluxEDA, achieved a score of 97.94, outperforming Claude Code equipped with domain-specific EDA skills by up to 8.39 times.

These findings suggest that domain-specific training or tools alone are insufficient for scaling autonomous agents to industrial-grade hardware design. Going forward, the work indicates that the development of automated EDA systems must focus heavily on the co-optimization of agent system architectures and foundation model capabilities to handle iterative, closed-loop tool interactions efficiently. This paradigm shift will likely guide the design of future autonomous silicon compilers. Note that this analysis is based on the published abstract of the study.

AI/ML arXiv cs.AI

FlowBlock: Wavefront-Parallel Decoding for Self-Correcting Diffusion Language Models

Block-wise diffusion large language models (dLLMs) achieve high KV-cache efficiency by sequential decoding at the block level, but this architectural design imposes a strict serial bottleneck on inter-block processing. While prior efforts to introduce inter-block parallelism degrade model accuracy or require expensive post-training, a new framework called FlowBlock introduces a training-free alternative. Developed by Bing Tian, Haikun Liu, Xiaocheng Zhong, Zhuohui Duan, Zhaokai Luo, Huayi Jin, Zhiyong Wang, and Xiaofei Liao, and published on arXiv, FlowBlock reframes block finality from a hard sequential dependency into a dynamic scheduling resource. It targets machine learning systems researchers and software engineers seeking to optimize inference pipelines and throughput for diffusion-based generative models.

The framework relies on the inherent self-correcting properties of dLLMs, specifically their token-to-token (T2T) editing capabilities. Because dLLMs can repair tokens drafted with slightly outdated upstream contexts, downstream blocks can begin processing using only an informative draft rather than waiting for a finalized predecessor. FlowBlock operationalizes this insight through two core mechanisms. First, Gated Wavefront Decoding admits blocks into a bounded wavefront once they satisfy a readiness gate, jointly refines active blocks via T2T editing, and commits them in sequence under a windowed block-causal mask that preserves exact KV cache reuse. Second, Heterogeneous Wavefront Packing maps each request to an independent wavefront and packs these asynchronous processing windows into dense, shape-stable batched forwards to maximize hardware utilization.

Empirical evaluations demonstrate that FlowBlock significantly improves performance over serial baselines. It increases tokens per second by up to 2.95× on LLaDA-2.1 and 4.01× on LLaDA-2.0, while slashing latency by up to 53.6% and 77.1%, respectively, alongside a 1.3-point gain in average accuracy. Compared to D2F, a training-based parallel baseline, FlowBlock delivers superior accuracy and up to 16× higher batched serving throughput. This work enables highly parallelized, low-latency execution of diffusion language models without retraining, proving that the error-correcting nature of modern generative architectures can be directly exploited as a system scheduling optimization tool. This analysis is based on the paper's published abstract and metadata.

Hardware/Chips arXiv cs.AI

A Hardware-oriented Approach for Efficient Bayesian Inference Computation and Deployment

Accelerating discrete Bayesian inference on resource-constrained edge devices remains a significant challenge due to the high computational overhead of variational message-passing algorithms, which are typically dominated by complex tensor contractions. To bridge this gap, researchers Nikola Pižurica, Matteo Risso, Nikola Milović, Alessio Burrello, Igor Jovančević, Conor Heins, and Miguel de Prado published a hardware-oriented optimization methodology on arXiv. This work is designed for systems engineers, roboticists, and machine learning researchers who require real-time, robust probabilistic reasoning on low-power, embedded hardware without sacrificing mathematical rigor.

The core of this methodology lies in restructuring the memory layout of tensor contractions to better align with the execution paradigms of commercial off-the-shelf embedded GPUs. The authors introduce two complementary merging strategies that transform irregular, sparse tensor operations into compact, regularly-shaped execution primitives optimized for parallel GPU threads. To mitigate the memory footprint of these operations, the framework incorporates sparse array representations alongside a novel tensor-clustering scheme. This methodology is implemented across three core message-passing algorithms for Hidden Markov Models: variational filtering, variational message passing, and marginal message passing. To automate the deployment process, the authors introduce a machine-learning-based autotuner that evaluates a target generative model's specification and dynamically selects the optimal algorithmic variant for the underlying hardware.

Evaluated on an NVIDIA Jetson Orin AGX across 770 randomly sampled Partially Observable Markov Decision Process configurations, this approach delivers speedups of up to 5x, with typical performance gains ranging from 2x to 2.5x, while producing numerically identical outputs to the baseline implementations. This optimization strategy enables the practical deployment of sophisticated decision-making and active inference models directly at the edge. By proving that co-designing algorithmic memory layouts with GPU hardware constraints can alleviate latency bottlenecks, this research provides a scalable pathway toward highly autonomous, energy-efficient edge systems capable of handling deep uncertainty.

Please note that this analysis is based on the published abstract of the technical paper.

Homelab/Self-Hosting arXiv cs.AI

AdaHome: An Adaptive Smart Home Assistant using Local Small Language Models

AdaHome, developed by researchers Eu Jin Lim, Zhaoxing Li, and Sebastian Stein and published on arXiv (cs.AI), introduces an adaptive smart home assistant framework optimized for locally deployed small language models (SLMs). While contemporary large-language-model-based home assistants offer broad reasoning capabilities, they typically suffer from latency bottlenecks, high computational costs, and privacy vulnerabilities due to cloud-dependent architectures. AdaHome addresses these trade-offs by shifting execution to the edge, providing a privacy-preserving and highly responsive alternative for IoT developers and smart home researchers aiming to deploy local, low-latency intelligence on resource-constrained hardware.

Architecturally, AdaHome optimizes local execution through three core mechanisms. First, an intent-aware planning framework acts as a dynamic router, directing simple commands to efficient, direct prompt-based pipelines while reserving resource-intensive reasoning pipelines only for ambiguous inputs. Second, for commands requiring deeper interpretation, it employs a Chain-of-Draft strategy to streamline reasoning steps, enabling fast and stable decision-making. Third, it introduces a preference adaptation mechanism that incrementally learns from user feedback over time without the memory overhead of prompt-augmented context windows or the computational cost of local model retraining. Empirical evaluations under a unified small model setting demonstrate that AdaHome achieves 86.7% accuracy on direct commands with up to a 3x reduction in latency. In multi-turn scenarios, it achieves 88% user preference consistency, significantly outperforming the 52.5% achieved by standard prompt-augmentation baselines.

This framework shifts the paradigm of edge-based smart home orchestration. By decoupling complex reasoning from routine tasks and solving the personalization challenge without model tuning, AdaHome enables the viable deployment of reliable, private, and highly customized agentic workflows on consumer-grade gateway hardware. This work paves the way for more autonomous, energy-efficient IoT ecosystems that respect user data privacy. Note that this analysis is based on the published abstract of the paper.

AI/ML arXiv cs.AI

Can We Break LLMs Out of Self-Loops? Fine-Grained Reasoning Control with Activation Steering

Sheldon Yu, Tong Yu, Xunyi Jiang, Rohan Surana, Gagan Mundada, Sungchul Kim, Lina Yao, Julian McAuley, and Junda Wu have introduced SOPHIA (Steering Of reasoning Processes via Hidden-state Intervention and Activations) in a paper published on arXiv cs.AI. This work addresses a critical bottleneck in frontier large language models (LLMs) that utilize extended reasoning trajectories: the tendency of these models to get trapped in repetitive "self-loops," which exhaust token budgets without reaching a solution. Designed for machine learning researchers and software engineers building complex LLM agents, code generation pipelines, or mathematical solvers, SOPHIA introduces a framework to monitor and dynamically steer the model’s internal reasoning path at inference time.

Traditional methods for shaping LLM reasoning rely on input-level prompt engineering, which offers no fine-grained control over the generation process once it begins. SOPHIA solves this by treating reasoning traces as sequences of latent states rather than unstructured text. To achieve fine-grained control, the system employs three core mechanisms. First, it classifies every generation prefix into a distinct latent state and maps step-level transitions. Second, it compiles a bank of offline-computed steering vectors indexed by transitions between state pairs. Finally, an online inference controller monitors the transition structure in real time. When the controller detects a self-loop or a reasoning deadlock, it retrieves the appropriate steering vector from the bank and applies a hidden-state activation intervention to nudge the model toward a productive target state.

Experiments demonstrate that SOPHIA reliably intervenes in self-loop failures, with steering vectors generalizing successfully across different state pairs. This targeted intervention improves both end-task accuracy and token efficiency, proving that mechanistic, fine-grained controllability directly translates to superior reasoning quality. Moving forward, this research paves the way for active, closed-loop control of LLM inference, shifting the paradigm from static prompting to dynamic, state-aware cognitive steering. This approach could significantly enhance the reliability of autonomous agents by preventing them from sinking into unrecoverable reasoning loops. Please note that this analysis is based on the published abstract of the paper.

Open Source arXiv cs.AI

OpenMHC: Accelerating the Science of Wearable Foundation Models

OpenMyHeartCounts (OpenMHC) addresses a critical bottleneck in digital health research: the lack of large-scale, open-access datasets and reproducible foundation models for wearable technology. Published on arXiv in June 2026 by Narayan Schuetz, Kelly W. Zhang, and their co-authors, this work introduces the largest open-access wearable health dataset to date, alongside open-source implementations and weights of recent wearable foundation models. By open-sourcing these resources, the researchers transition wearable AI from a domain dominated by proprietary, closed-source models to one characterized by open, collaborative science.

The primary audience for this work includes machine learning researchers, software engineers, and digital health developers who build algorithms for continuous, passive health monitoring and active health coaching. Historically, these practitioners faced a significant barrier: the largest wearable datasets remained private, and leading foundation models lacked public weights or reproducible training code. OpenMHC fills this gap, offering a high-fidelity resource to train, evaluate, and refine time-series models without proprietary constraints.

Technically, the contribution is built on three key elements. First is the scale of the OpenMHC dataset, which comprises over 60 million hours of longitudinal wearable data spanning 19 sensor channels—such as heart rate, step count, sleep, and workouts—linked with up to 169 variables covering health, lifestyle, mood, and behavior from 11,894 participants. Second is the democratization of model weights, providing open-source implementations of recent multivariate time-series and wearable foundation models. Third, the authors introduce a unified, standardized benchmarking framework that evaluates models across three specific tracks: downstream health and behavior prediction, multivariate data imputation, and time-series forecasting.

This contribution enables the rapid development of robust, generalizable foundation models for personalized medicine and digital biomarkers. By providing a standardized benchmark, it allows the community to objectively compare classical methods against deep learning architectures, establishing a rigorous foundation for future wearable AI research. Note that this analysis is based on the published abstract of the paper.

AI/ML arXiv cs.AI

High-accuracy Low-Bit KV-Cache Quantization via Local Distribution Restoration

For systems engineers and machine learning researchers designing high-throughput large language model (LLM) serving systems, the memory footprint of the Key-Value (KV) cache represents a primary bottleneck during long-context inference. While extreme low-bit quantization significantly mitigates this memory and bandwidth overhead, it traditionally causes catastrophic degradation in model accuracy. To resolve this trade-off, Gradwell Dzikanyanga, Yanqi Pan, Weihao Yang, Donglei Wu, Wen Xia, and Hao Huang introduced a novel post-quantization recovery framework in their arXiv preprint "High-accuracy Low-Bit KV-Cache Quantization via Local Distribution Restoration." This work reframes how quantization error impacts token generation, shifting focus away from absolute logit errors toward structured local misranking in the top-K logits.

The authors pinpoint that the primary driver of accuracy degradation under aggressive quantization is local distribution drift—a phenomenon where the relative order and distribution of the most probable candidate tokens (the top-K region) are corrupted. To address this, they propose Local Distribution Restoration, implemented through a framework called DGAP. DGAP employs lightweight, efficient risk detectors that analyze quantized-logit features during the generation step to identify steps at high risk of distribution drift. Once a high-risk step is flagged, a specialized corrector dynamically restores only the selected top-K candidate distribution before the final token selection process occurs. This targeted correction avoids the computational overhead of dequantizing the entire state.

This approach enables near-lossless performance at ultra-low bitwidths. On the Llama-3.1-8B model, DGAP restores 1-bit (K1V1) KV-cache accuracy on the challenging RULER benchmark from a degraded 47.8% up to 83.2%, while simultaneously reducing distribution drift from 0.38 to 0.14. Evaluated across Llama, Mistral, and Qwen architectures, DGAP consistently preserves a minimal KV-cache memory footprint with only modest decoding overhead. This paradigm shifts the optimization focus of KV-cache quantization from uniform error minimization to selective, top-K probability preservation, paving the way for ultra-efficient, long-context LLM deployment on resource-constrained hardware. Note that this analysis is based on the published abstract of the paper.

AI/ML arXiv cs.AI

Autonomous mechanistic discovery of colorectal cancer vulnerabilities via multi-scale AI swarms

The persistent challenge in automated scientific discovery lies in the epistemic gap between the semantic reasoning of large language models and the deterministic, physical constraints of mammalian biology. Existing multi-agent frameworks often lack the mathematically grounded causal boundaries necessary for clinical translation, while digital twins frequently sacrifice mechanistic interpretability for black-box predictive accuracy. To bridge this divide, Christopher Baker, Tianyu Ren, Karen Rafferty, Hui Wang, and Simon McDade developed Octopus, a novel neuro-symbolic architecture published on arXiv in June 2026. Designed for computational biologists, machine learning engineers, and translational oncology researchers, Octopus provides an autonomous pipeline for discovering clinical-grade therapeutic vulnerabilities.

The engine operates on two core technical mechanisms. First, it integrates zero-leakage, local large language model swarms with strict algorithmic physics engines, establishing a neuro-symbolic feedback loop that constrains semantic generation with deterministic physical boundaries. Second, it implements a multi-scale analytical pipeline. It autonomously generates therapeutic hypotheses against in vitro CRISPR dependency data from the Cancer Cell Line Encyclopedia, traces dynamic causal cascades using mechanistic interpretability via XGBoost SHAP vectors, and translates these emergent vulnerabilities in silico to predict in vivo Patient-Derived Xenograft tumor trajectories and human overall survival.

In an unsupervised sweep of colorectal cancer transcriptomes, the Octopus architecture identified Insulin-like Growth Factor 2 as a bounded vulnerability to 5-Fluorouracil resistance. This autonomous discovery was statistically robust, maintaining significance after Benjamini-Hochberg false discovery rate correction and successfully predicting in vivo tumor volume shrinkage in an independent mouse cohort.

By transitioning automated discovery from isolated cellular assays to verifiable, end-to-end clinical predictions, this framework establishes a mathematically bounded, zero-leakage paradigm for biomedical research. It provides a blueprint for how multi-agent reasoning can be safely and transparently harnessed for drug discovery and patient-specific therapeutic targeting. Note that this analysis is based on the paper's published abstract.

AI/ML arXiv cs.AI

A${}^2$BM: Alignment-Aware Bridge Matching for Image-to-Image Translation

A new framework called Alignment-Aware Bridge Matching (A${}^2$BM) has been introduced for image-to-image translation, addressing a critical limitation in existing diffusion and bridge matching models. The core contribution of this work is the explicit incorporation of image pair alignment information during the training process. This approach tackles the prevalent issue of weakly aligned training data, which is common in real-world scenarios due to variations in acquisition conditions, illumination, or minor misregistrations. By learning to disentangle genuine semantic correspondences from artifacts introduced by misalignment, A${}^2$BM significantly improves translation fidelity.

The problem it solves is the performance degradation of standard image-to-image translation models when presented with imperfectly aligned training data. Existing methods often assume perfect correspondence, leading to artifacts and inaccurate translations when this assumption is violated. This research fills that gap by providing a principled method to leverage alignment information, thereby enhancing robustness and accuracy. The work is authored by Aimi Okabayashi (UBS Vannes), Georges Le Bellier (LIP, CEDRIC - VERTIGO), Nicolas Audebert (LaSTIG, IGN, CEDRIC - VERTIGO), Charlotte Pelletier (OBELIX), Thomas Corpetti (LETG - Rennes), and Nicolas Courty (OBELIX), and was published on arXiv under Computer Science (cs.AI and cs.CV).

A${}^2$BM is primarily intended for researchers and engineers working on computer vision tasks that involve image translation, domain adaptation, and image editing, particularly those dealing with real-world datasets where perfect alignment is not guaranteed. The two most important technical ideas are the integration of an alignment score as a conditioning variable within the bridge matching framework and the demonstration of how this score can be used at inference time to control translation fidelity. By conditioning the diffusion process on alignment, the model learns to prioritize reliable correspondences, effectively mitigating the negative impact of misalignment. This leads to more accurate and semantically consistent translations.

Going forward, this work enables the development of more robust and generalizable image-to-image translation models for a wider range of practical applications. The alignment conditioning mechanism offers a novel avenue for controlling generative processes based on data quality, which could influence future research in domain adaptation, cross-sensor imaging, and image manipulation where precise pixel-level correspondence is challenging to achieve. The paper is an abstract only.

AI/ML arXiv cs.AI

Emergent Hierarchical Monosemantic Neurons from the Group-Contrastive Forward-Forward Algorithm

This research, "Emergent Hierarchical Monosemantic Neurons from the Group-Contrastive Forward-Forward Algorithm," by Yiming Tang and colleagues, introduces a novel training algorithm designed to promote the emergence of monosemantic neurons within neural networks, particularly in the context of vision models. The core contribution lies in demonstrating that a biologically inspired, local learning rule, rather than global error minimization or explicit sparsity constraints, can yield hierarchical representations where individual neurons capture distinct, abstract concepts. This work addresses a significant gap in mechanistic interpretability, which often relies on post-hoc analysis of trained models or imposes strict sparsity assumptions that may not align with how biological systems encode information.

The algorithm, named Group-Contrastive Forward-Forward (GCFF), is intended for researchers and engineers working on deep learning interpretability and biologically plausible learning mechanisms. It offers a path to understanding the internal representations of complex models, benefiting those aiming to build more robust, explainable, and potentially more efficient AI systems.

Key technical ideas include the use of a Forward-Forward training approach, which avoids backpropagation by training layers using positive and negative data pairs. GCFF enhances this by incorporating class-specific routing, enabling a more focused learning signal for different concepts, and a within-class contrastive objective. This contrastive element pushes representations of similar concepts closer together while separating dissimilar ones. Crucially, GCFF achieves monosemanticity through architectural design and learning objectives rather than demanding sparsity in activation or weights. The paper demonstrates that applying GCFF to CLIP representations results in emergent neurons that progressively increase in abstraction with network depth, capturing environmental properties independent of foreground objects, without explicit supervision for abstraction level. Furthermore, GCFF shows promise in training networks from scratch, achieving competitive performance on image classification tasks.

Moving forward, this work suggests a paradigm shift in how we approach interpretability and representation learning. By emphasizing local, biologically plausible learning rules, GCFF-like algorithms could lead to the development of inherently more interpretable and modular neural architectures. This could significantly influence the design of future AI systems, potentially enabling more efficient learning, easier debugging, and a deeper understanding of emergent cognitive abilities, even in the absence of sparsity constraints. The paper itself is an abstract available on arXiv.

AI/ML arXiv cs.AI

AoA: Theorem Proving Agent over Abstract Syntax Tree of Redesigned Language

This work, "AoA: Theorem Proving Agent over Abstract Syntax Tree of Redesigned Language," by Qiyuan Xu and colleagues from an undisclosed institution, addresses a critical bottleneck in interactive theorem proving (ITP) and program verification: the high manual effort and computational cost associated with current AI-driven proof assistants. The core contribution is the development of AoA, an LLM-based agent that operates directly on the Abstract Syntax Tree (AST) of a novel proof language, Minilang, rather than its serialized concrete syntax. This fundamental shift aims to reduce token consumption, API costs, and improve efficiency by representing proofs as JSON AST edits and integrating proof state management within the tree structure.

The problem AoA solves is the inefficiency of existing LLM proof agents. These agents, by processing concrete syntax, incur significant costs due to token limits and repeated state recalculations as proofs evolve. This issue is exacerbated by the growing complexity of formal verification tasks and the emergence of more efficient proof languages like Minilang, which are often not well-represented in existing LLM training data due to their novelty. AoA therefore fills a gap by enabling LLMs to effectively leverage specialized proof languages and by optimizing the interaction model for cost and performance.

The intended audience comprises researchers and engineers in formal verification, program analysis, and AI for mathematics. Those who benefit include developers working on complex software systems requiring high assurance, mathematicians formalizing proofs, and anyone seeking to scale interactive theorem proving through AI assistance.

Two key technical innovations underpin AoA. Firstly, the decision to operate on the AST of Minilang allows for a more structured and precise representation of proof steps. Instead of emitting or querying text, AoA manipulates JSON objects representing AST nodes and their transformations. This aligns naturally with the tool-calling capabilities of modern LLMs. Secondly, AoA introduces a "tree-edit model" where each proof operation is inherently linked to its resulting proof state, represented as a subtree. This fusion of operation and state eliminates the need for separate, brittle line-number-based queries to track progress, leading to more robust and efficient proof construction. The results demonstrate significant improvements: a 2.3-4.7x reduction in normalized API cost, 2.9-6.9x fewer tokens, 3.9-8.9x fewer tool calls, and 1.4-2.0x faster completion times compared to a strong baseline on established benchmarks, while also solving more problems on a difficult verification task.

Moving forward, AoA's AST-centric approach could fundamentally alter how AI agents interact with formal systems. It suggests a paradigm shift away from text-based interfaces towards structured data representations, potentially enabling LLMs to tackle even more intricate verification problems. This work may influence the design of future proof assistants and LLM-based reasoning agents, promoting more efficient and scalable formal methods. This analysis is based on the provided abstract, as the full paper was not available.

AI/ML arXiv cs.AI

Retrieval is Enough: Training-Free Interpretability with a Tool-Using Agent

The research, authored by Sriram Balasubramanian and an unnamed co-author from the institution implicitly represented by their arXiv submission, presents HARP (Hypothesis-driven Agentic Retrieval and Probing), a novel training-free approach to neural network interpretability. Published on arXiv in the Computer Science AI and Machine Learning categories, HARP's core contribution is demonstrating that extensive interpretability insights can be extracted solely through retrieval from a pre-compiled database of model activations and their associated contextual metadata, augmented by a suite of activation manipulation tools. This work directly addresses the escalating cost and complexity of current state-of-the-art interpretability methods, such as Sparse Autoencoders (SAEs) and activation oracles, which necessitate computationally intensive training phases. By sidestepping training altogether, HARP offers a significantly more efficient and flexible paradigm for understanding model behavior. The intended audience is primarily software engineers and researchers engaged in model analysis, debugging, and assurance, who stand to benefit from more accessible and potent interpretability solutions.

Key to HARP's efficacy are three critical technical ideas. First, it leverages a vector database populated with neural network activations, critically paired with their textual contexts. This rich pairing enables the agent to ground activation patterns in concrete semantic information. Second, the agent is equipped with a set of manipulation tools, including projection, difference, and averaging operations on activation vectors. These tools allow for the systematic exploration and decomposition of latent space. Third, HARP employs an agentic loop where retrieved samples inform hypothesis generation, which are then validated by constructing linear probes. This iterative, hypothesis-driven process efficiently guides the search for meaningful interpretations.

HARP's results are remarkable: it surpasses training-based methods like activation oracles and SAE-based agents in concept discovery, detection, model steering, and even secret elicitation, all without any training. This suggests that current training-based interpretability techniques may not be extracting insights beyond what is inherently present in their training datasets. HARP's training-free design makes it substantially cheaper and adaptable, allowing new datasets to be indexed on demand. This work has the potential to shift the landscape of interpretability research by motivating the development of benchmarks that explicitly demand insights that go beyond existing training data. It also paves the way for more accessible and scalable model debugging and understanding, particularly as models grow in complexity. The provided content is an abstract only.