25 papers across AI, ML, NLP, and CV from the last 24 hours.
Three themes dominate today's batch. Reinforcement learning for reasoning continues its rapid evolution — not just with another GRPO derivative, but with structural innovations like competitive cross-model grading that forces models to evaluate each other's reasoning traces rather than just their final answers. The compositional capabilities RL post-training can build, beyond what pretraining embeds, are becoming measurable. A second wave pushes agentic systems from capability demos toward infrastructure: a 217k-skill library for autonomous agents, systematic trace analysis pipelines for diagnosing agent failures, and concrete findings about how to distribute model capacity across hierarchical search roles. Medical imaging remains a persistent application layer — cardiac MRI super-resolution, echocardiography segmentation, and low-compute ECG digitization for remote clinics appear alongside large-scale multimodal clinical datasets.
The standout is Agon, which reframes the reward problem for reasoning: instead of grading only final answers, two models compete as simultaneous solvers and evaluators, creating a training signal for the reasoning trace itself. The paper identifies why single-model RL teaches models to write more rather than think better — there was no label for good thinking — and constructs one through adversarial co-grading.
Conspicuously absent are papers on scaling laws or new architecture introductions. The batch is post-architecture, post-scale: nearly everything here targets training dynamics, deployment efficiency, structural analysis of existing mechanisms, or domain-specific application. Collectively, the field appears to be consolidating around a question that's more operational than fundamental — given the models we have, how do we extract better reasoning, deploy them efficiently, and make agents reliably useful?
Chen Tang, Yizhou Wang, Jianyu Wu · 2026-07-08
Structure-property relationships are foundational to biology, chemistry and materials science, where function, reactivity and physical response emerge from spatial, chemical and periodic organization. Mechanistically explaining these relationships requires interpreting structural evidence through scientific principles and physical constraints, from stereochemistry and bonding to symmetry, energeti...
Yair Feldman, Linxi Zhao, Nathan Godey · 2026-07-08
Limited memory language models (LMLMs) externalize factual knowledge during pretraining to a knowledge base (KB), rather than memorizing it in their weights. During generation, the model then fetches knowledge from the KB as needed. This recently introduced paradigm provides multiple advantages, including knowledge control capabilities that remain beyond conventional LLMs. We propose continuous-qu...
Ying Chang, Jiahang Xu, Xuan Feng · 2026-07-08
The optimization of long-horizon agents increasingly relies on reflection-based mechanisms, where a large language model (LLM) acts as an optimizer to diagnose agent failures and improve agent policies. However, real execution traces are difficult to use directly for optimization: large trace collections are often redundant and heterogeneous, making optimization inefficient and prone to overfittin...
Grzegorz Brzezinka · 2026-07-08
Large language models hallucinate most about entities they have never seen. We ask whether a model's activations betray entity familiarity before a single answer token is generated, and whether that signal predicts the factual reliability of the answers. On four Polish Bielik models (1.5B-11B parameters), we probe four entity domains (athletes, cities, writers, musicians), each with 42 well-known,...
Jordan Painter, Dipankar Srirag, Adarsh Kappiyath · 2026-07-08
Large language models increasingly understand dialectal English, yet still produce only standard, US-leaning English, leaving dialectal generation, the harder half of the problem, largely unaddressed. We introduce DiaLLM, which continually pretrains three open-weight language model families on the International Corpus of English and applies implicit and explicit post-trainin...
Sahil Kale · 2026-07-08
Reliable confidence estimation is essential for deploying large language models (LLMs) in confidence-aware systems, where downstream decisions such as retrieval, tool use, and adaptive computation depend on accurately estimating answer reliability. Existing approaches, however, largely treat confidence as a property of completed responses, overlooking how confidence-related information evolves thr...
Anna Kuzina, Paul N. Whatmough, Babak Ehteshami Bejnordi · 2026-07-08
The quadratic cost of causal self-attention severely bottlenecks long-context transformer inference. While numerous post hoc linearization pipelines exist, it is difficult to identify which components preserve model quality. This work isolates the effect of state update design in a strict frozen-backbone regime. We show that softmax relies on key-dependent, rank-1 orthogonal projections, elucidati...
Eric Zhu, Abhinav Shrivastava, Soumik Mukhopadhyay · 2026-07-08
Reinforcement learning from human feedback (RLHF) has emerged as a powerful paradigm for aligning generative models with human preferences. However, applying RLHF to diffusion models remains highly feedback inefficient, as existing approaches typically require large amounts of human or reward model evaluations. This limitation reduces the practicality of diffusion RLHF in realworld settings where ...
Vladislav Beliaev · 2026-07-08
Reinforcement learning from verifiable rewards (e.g. GRPO) is the engine behind today's reasoning models, yet it grades only the final answer. On hard problems this trains models to write more rather than to think better, since the trace itself is never graded and no label for good thinking exists. We introduce Agon, which makes two competing models each other's graders. Both attempt the same prob...
Shreyasvi Natraj, Cyrus Achtari, Felice Gragnano · 2026-07-08
Electrocardiography (ECG) is one of the most widely used tests for diagnosing cardiovascular disease. Yet several remote clinics still utilize paper ECG printouts for their analysis due to limited connectivity and computational capacity. As a result, vast numbers of physical ECGs obtained in remote areas still remain incapable of being accessed by contemporary artificial-intelligence (AI)-based de...
Xiangming Huang, Guannan Zhang, Lu Lu · 2026-07-08
The inverse design of physical systems governed by partial differential equations is computationally demanding due to the high dimensionality and non-convexity of design spaces. Generative models for inverse design often lack robustness and transferability, whereas evolutionary strategies are robust but struggle in high-dimensional spaces. This paper introduces a Neural Operator-enabled Topology-i...
Xinyi Wu, Siyuan Liu, Ali Jadbabaie · 2026-07-08
Rotary Position Embeddings (RoPE) provide transformers with a fixed grid of positional frequencies, yet trained models use these frequencies highly non-uniformly. We study what determines this frequency usage and propose a data-centered explanation: RoPE frequencies are selected to match the relative-distance structure of the training data. Viewing each frequency as a positional lens, we formalize...
Victor Giannakouris, Immanuel Trummer · 2026-07-08
Analytical workloads operating on data stored in external database systems face a fundamental bottleneck: data access is guarded entirely by the database driver, like JDBC or ODBC, forcing all reads through query execution and other driver layers that are not designed for bulk columnar analytics. We present Jailbreak, an approach that bypasses the database engine entirely by reading storage files ...
Yujiao Chen · 2026-07-08
We introduce institutional red-teaming, an evaluation methodology for testing deployment rules in multi-agent AI: hold the agents, objectives, and task state fixed, vary only one rule, and attribute the resulting change in collective behavior to that rule. We instantiate the methodology in IABench-CA, a consequence-allocation benchmark spanning 228 contexts, five canonical rules, and seven model p...
Tianming Sha, Yue Zhao, Lichao Sun · 2026-07-08
Autonomous AI agents can execute complex tasks with limited human review, yet they often lack the grounded operational knowledge to make their outputs not just executable but correct, secure, and maintainable. We introduce SkillCenter, to our knowledge the largest open skill library for agents by total count: 216,938 structured skills across 24 domain bundles. A SkillGate-filtered pipeline contrib...
Mingguang Chen, Licheng Wang, Bo Qu · 2026-07-08
AI systems increasingly participate in their own improvement: revising their outputs, adapting their own harnesses during deployment, training on data they generate, and, increasingly, conducting AI research itself. This literature is described under a vocabulary ("self-refine," "self-reward," "self-play," "self-evolve") that conflates fundamentally different ambitions. We survey 1,250 arXiv paper...
Azwar Abdulsalam, Nishil Patel, Andrew Saxe · 2026-07-08
Does RL post-training merely amplify primitive skills already latent in a base model, or can it compose primitive skills into new higher-level strategies? We study this question in a fully observable rewrite-grammar environment where the pretraining distribution is known and every generated rewrite can be audited. A Transformer is pretrained on primitive symbol-rewrite chains and post-trained on a...
Eitan Levin, Venkat Chandrasekaran · 2026-07-08
Many machine learning models are defined for inputs of different sizes, such as point clouds containing different numbers of points, sequences of tokens of different lengths, and graphs on different numbers of nodes. Such models are trained on finitely-many examples of necessarily limited sizes. How well do these models generalize from inputs of small size to larger inputs of size not seen during ...
Shuailei Ma, Jiaqi Liao, Xiangyang Wang · 2026-07-08
Despite the recent promise in robot control, video generative models suffer from a domain mismatch due to their primary focus on content creation. For example, their design inherently prioritizes visual fidelity and creativity over computational efficiency and physical realism. In this work, we present LingBot-Video, a DiT-based video pretraining paradigm specifically tailored for embodied intelli...
Hyunjae Kim, Dain Kim, Pan Xiao · 2026-07-08
Medicine is inherently multimodal, requiring clinicians to synthesize information across diverse data streams. Yet the development of multimodal foundation models is constrained by limited access to large-scale, high-quality clinical data. Although PubMed Central (PMC) offers a complementary source of expert-authored image-text data, existing PMC-derived resources remain limited in fidelity, repro...
Shaoming Pan, Chenchuhui Hu, Leon Axel · 2026-07-08
Clinical cardiac MRI is commonly acquired with high in-plane resolution but coarse through-plane resolution to reduce scan time and accommodate breath-hold and cardiac-motion constraints, which limits 3D analysis and diagnostic accuracy. We propose STRMSR, a reference- and memory-guided through-plane super-resolution (SR) framework that reconstructs high-resolution (HR) cardiac volumes by leveragi...
Leonardo Nogueira Falabella, Vasily Sazonov · 2026-07-08
Time series analysis plays a vital role across a wide range of scientific and engineering domains but poses substantial computational challenges. A major difficulty arises from the time reparameterization invariance of time series data, which complicates the extraction of meaningful temporal features. In this work, we address the problem of time series classification by exploring the application o...
Mubarak Raji, Masooda Bashir · 2026-07-08
Artificial intelligence is rapidly evolving from generative systems to agentic AI capable of autonomously planning and executing tasks. Widely characterized as the Year of Agentic AI, 2025 marked accelerated development and deployment, introducing new ethical and governance challenges. This paper presents a systematic review of the emerging literature on agentic AI governance. Our analysis identif...
Hongyu Qu, Jianzhe Gao, Xiaobin Hu · 2026-07-08
Mainstream Vision-Language-Action (VLA) models predict actions primarily from the current observation under a Markovian assumption, thus struggling with long-horizon, temporally dependent tasks. Existing memory-augmented VLAs either expand the observation window or retrieve history from the memory bank as auxiliary policy-side context. However, they leave memory outside the native latent embedding...
Kaicong Huang, Meng Ma, Ruimin Ke · 2026-07-08
Safety evaluation for autonomous driving is dominated by rare, safety-critical interactions, motivating simulators that can deliberately synthesize corner cases with photorealistic observations. Corner-case generation is inherently a multi-source problem spanning visual representation, scene reasoning, and vehicle trajectory generation and control. Prior knowledge- and model-based approaches typic...
This digest is generated automatically from arXiv submissions. Not affiliated with arXiv or Cornell University.