Week beginning 7th September 2026

Every computer science paper posted to arXiv this week, with plain-language summaries and glossary terms for each one.

SenseNova U1.5 improves visual AI with unified and high resolution model

SenseNova-U1.5: Towards Native Unified Visual Intelligence

Abstract: We launch SenseNova-U1.5, an 8B-MoT native unified multimodal model that understands, reasons about, and generates visual content within an encoder-free and VAE-free architecture. We strengthen its visual interface through spatially coherent patch reconstruction and scale its training with carefully curated generation and editing data, improved task formulation, structural prompt enhancement, and native resolutions of up to 4K. For post-training, we optimize specialized experts for visual aesthetics, bilingual text rendering, infographic generation, and image editing, and consolidate their capabilities through multi-expert on-policy distillation. Across extensive evaluations, SenseNova-U1.5 largely advances image fidelity, text rendering, complex composition, multi-reference editing, and interleaved generation, while improving instruction following and preserving subject identity, geometry, and unmodified regions. Despite limited exposure to structured formats in its generation data, SenseNova-U1.5 generalizes effectively to long, complex, and structured visual instructions, further proving that multimodal understanding can transfer to visual planning and creation. Together, these findings position native unified modelling as a promising path towards systems that perceive, reason and create within a fully end-to-end framework. We will open-source training code, including supervised fine-tuning, reinforcement learning, and on-policy distillation.

Thu 10 SeptComputer Vision and Pattern Recognition
The gist
Understanding and creating images using artificial intelligence is often complicated and requires different systems working together. The authors present SenseNova-U1.5, a single AI model that can recognize, think about, and produce detailed images without extra components usually needed in such tasks. They improved its training with high-quality data and special techniques, allowing it to work well with images up to 4K resolution and handle complex editing and instructions. SenseNova-U1.5 can keep the important parts of images unchanged while improving others and works well even with complicated directions. This shows it is possible to build one system that can see, understand, and create visuals seamlessly.
Open 2609.11929v1

Gpu compilation technique makes game solving up to 80 times faster

GPU-CFR: 80x Faster Counterfactual Regret Minimization by Compiling the Game to Static Dataflow and CUDA Graph Replay

Abstract: Counterfactual regret minimization (CFR) is one of the few large numerical workloads that still runs faster on CPUs than on GPUs. Each iteration sweeps a game tree with up to billions of states in millions of small, interdependent gather and scatter steps issued through a generic tree interface. On a GPU every kernel finishes in microseconds, so kernel launches and framework dispatch dominate the run time, and prior GPU implementations have lost to optimized CPU code. We observe that for a fixed game, everything about a CFR iteration except the numerical values is known before the first iteration runs. We propose GPU-CFR, a compiler and runtime built on this observation. It compiles any game once into static dataflow: flat edge and information-set arrays, precomputed indices, and depth-level batched passes fix the entire operation sequence, and only solver state changes between iterations. Static chance folding, depth-level execution blocks, and a dual-lane reach buffer cut the number of framework operations by up to 18.1x. Because shapes, indices, and buffer addresses never change, CUDA Graph Replay records the iteration once and replays it with a single graph launch. On one A100, across an eight-game suite that spans card games, dice games, and board games, GPU-CFR runs 29.8--80.4x faster than the fastest prior GPU CFR on the same accelerator, and 14--258x faster than LiteEFG, one of the fastest open-source CPU implementations, on the four largest games. The compiled representation carries most of that margin: on eight CPU threads with no accelerator it is already 2.2--51.1x faster than the GPU baseline. On the CPU the optimized path reproduces the reference iterates bitwise, and tree construction and graph capture pay for themselves within the first solve. GPU-CFR beats every CPU and GPU baseline on the mid-to-large games of the suite without changing the update rule.

Thu 10 SeptDistributed, Parallel, and Cluster ComputingArtificial IntelligenceComputer Science and Game Theory
The gist
Solving complex games often involves looking at many possible moves, which is very slow and usually faster on normal computer processors (CPUs) than on graphics cards (GPUs). The authors found a way to prepare the game details ahead of time, turning the problem into a fixed sequence of simple steps that a GPU can run repeatedly without extra overhead. By compiling the game data and using a special GPU feature to replay the solution steps efficiently, their method runs up to 80 times faster on a GPU compared to previous attempts and much faster than CPU methods. This means difficult game problems can be solved much quicker using GPUs with their approach.
Open 2609.11923v1

Event cameras help drones and ground robots locate each other in tough conditions

EVPeriscope: Extended Perception across Aerial and Ground Vehicles with Event-based Propeller Tracking

Abstract: Reliable relative localization between aerial and ground robots is a key requirement for tightly coordinated heterogeneous teams. This can be difficult to do using conventional frame-based cameras and fiducial markers because they are sensitive to motion blur, lighting variations, and payload constraints. This paper presents EVPeriscope, an event-based perception system that enables detection, localization and control of a quadrotor using an upward-facing event camera on a ground robot by detecting the high-frequency visual signature of its propellers. This system allows the quadrotor to function as an extended perception system for the ground robot when onboard sensors exhibit degradation or occlusion. We demonstrate the capabilities of this marsupial ground-aerial system via experiments in challenging field conditions with wind speeds of up to 15 mph, in both daylight and at night. We show that the system supports localization and closed-loop navigation through dense foliage where the ground robot's sensors are occluded. Our control system for the quadrotor operates at 200 Hz entirely with onboard sensing and computation. More details and experiment videos can be found on the project page: https://ongdexter.github.io/evperiscope.

Thu 10 SeptRobotics
The gist
It can be hard for flying and ground robots to know exactly where they are relative to each other, especially if cameras get blurry or lose light. The authors developed a special system that uses a fast type of camera to spot the spinning parts of a drone from a robot on the ground. This helps the two robots work together even when it’s dark, windy, or there are lots of plants blocking the view. The drone can then act like a set of extra eyes for the ground robot when its own sensors don’t work well. This system runs quickly and fully on the drone using its own sensors and computer.
Open 2609.11920v1

Improving machine learning accuracy when data changes unexpectedly

General Quantification of Covariate and Concept Shifts

Abstract: Generalization under distribution shift remains a core challenge in modern machine learning, yet existing learning bound theory is limited to narrow, idealized settings and is non-estimable from samples. In this paper, we bridge the gap between theory and practical applications. We first show that existing definition of concept shift breaks when the source and target supports mismatch. Leveraging entropic optimal transport, we propose a key notion: $γ^{*}\!$-concept shifts, and derive a general error bound unifying covariate and $γ^{*}\!$-concept shifts, which applies to broad loss functions, label spaces, and stochastic labeling. We further develop estimators for these shifts with concentration guarantees, and the DataShifts algorithm, which can quantify distribution shifts and estimate the error bound in most applications - a rigorous and general tool for analyzing learning error under distribution shift.

Thu 10 SeptMachine LearningArtificial Intelligence
The gist
Machine learning models often struggle when the data they were trained on looks different from what they see later, a situation called distribution shift. Existing theories don't fully explain how errors happen in realistic cases, especially when the types of data don't match perfectly. The authors introduce a new way to measure changes in data and labels using a mathematical tool called entropic optimal transport. This leads to better predictions of a model's error when facing different types of shifts in data. They also created a practical method, DataShifts, to estimate these changes and error bounds from real data.
Open 2609.11918v1

Mixture-of-Experts models overfit faster when training data is repeated

Data Scarcity and Model Sparsity: Mixtures-of-Experts Overfit More to Repeated Data

Abstract: As the supply of human-written text is exhausted, it has become standard practice to repeat language model training data. Prior work has studied data repetition for densely activated Transformers, but the effects of data repetition remains largely unexplored for recently dominant sparse architectures such as Mixture-of-Experts (MoE), despite their increased compute efficiency. We vary data repetition rates across single- and multi-domain data mixes, and across MoE settings, including expert count and granularity. We consistently find, for models ranging from 80M to 1B active (8.5B total) parameters, that MoEs degrade more rapidly under data repetition. This effect increases with sparsity, dictated by total rather than active parameters. While 80M dense models can repeat data over 8x with minimal degradation, MoEs instead begin to suffer at 4x, and deteriorate rapidly, ceding their performance benefits in all-unique data settings to underperform dense models after 32x. We experiment with existing regularization methods as a potential remedy. We find that some methods, such as dropout, can mitigate overfitting. In particular, with strong masking-based regularization, MoEs are able to outperform dense models even when data is repeated more than 64 times. However, no method fully matches the performance of all-unique training data. Finally, we analyze internal mechanisms correlated with MoE overfitting in high repetition regimes, and find that MoE routing universally stabilizes early in training, and that expert specialization correlates with overfitting to repeated data. In sum, our work addresses the adverse interactions between sparsity and data repetition: we present evidence for the core mechanisms of overfitting and its potential remediation, and suggest promising avenues for future methods to reduce over-specialization in model parameters by disrupting memorization patterns.

Thu 10 SeptMachine LearningComputation and Language
The gist
When the same training examples are repeated often, some AI models start to perform worse because they memorize the data instead of learning to generalize. This study looks at a special kind of model called Mixture-of-Experts (MoE), which is designed to be efficient by activating only parts of the model for each input. The researchers found that MoE models overfit more quickly with repeated data compared to standard dense models, especially as the model becomes sparser. They also tested ways to reduce this overfitting and found that certain techniques like dropout help, but none fully solve the problem. The study helps explain why MoE models get worse with repeated data and suggests ways to improve them.
Open 2609.11917v1

Edge deployable vision language models struggle with real world species images

Can Edge-Deployable Vision-Language Models Identify Species?

Abstract: Camera traps often run in the field on edge hardware with limited or no connectivity, making small, locally-deployable vision-language models (VLMs) -- not frontier-scale ones -- the practically relevant class to evaluate for species identification. We test whether models in this deployment-relevant 2--8B range carry genuine taxonomic knowledge, evaluating four such VLMs (Qwen3-VL 2B/4B/8B, Gemma3 4B) against the domain-specific specialist BioCLIP (300M parameters) on a 96-species task, comparing clean iNaturalist photographs against camera-trap imagery from 6 LILA.science collections, on two independently-sampled evaluation sets. All models identify species far above chance, but every model -- general-purpose or specialist -- degrades sharply on field imagery (domain gaps of 9.6--26.6 percentage points, consistent across taxonomic levels and both evaluation sets), indicating the degradation reflects general image legibility rather than fine-grained discrimination failure. BioCLIP substantially outperforms every VLM tested (by 33.2--59.2 percentage points across an expanded 200-image sample for every model) despite its far smaller size, suggesting the gap reflects specialized training data rather than model scale; yet BioCLIP's own domain gap (18.0 points) is statistically indistinguishable from the best VLM's (22.3 points), suggesting the clean-to-field degradation itself is a property of the image-quality shift rather than a general-purpose-model weakness. Under open-set prompting, 5.9--9.6% of responses are syntactically valid but taxonomically nonexistent species names; the relative fabrication-rate ranking across models replicates exactly across both evaluation sets, a more robust finding than any single point estimate.

Thu 10 SeptArtificial Intelligence
The gist
Identifying animal species from camera pictures in the wild is hard because cameras are often in remote places with limited internet and simple devices. The authors tested smaller vision-language models that could run on these limited devices and found they do recognize species better than guessing but have trouble with real field photos compared to clear, clean images. A specialized smaller model trained just on biology did better than the general models, showing training data matters more than model size. However, all models struggled similarly with the lower quality of real-world images, and sometimes they even made up fake species names.
Open 2609.11916v1

Generative AI methods measure marketing impact on customer choice

Generative Marketing Mix Modeling: A Causal Inference Framework Linking GEO and GEM to Business Impact

Abstract: Generative artificial intelligence changes how firms reach customers, but standard marketing data do not record how often users see and notice a firm's name in generated answers. We develop Generative Marketing Mix Modeling (GMMM) to estimate the causal effects of Generative Engine Optimization (GEO) and Generative Engine Marketing (GEM). For GEO, GMMM combines repeated generated answers with question counts, shares of use across generative systems, and notice probabilities. For GEM, it combines records of sponsored placements with notice probabilities. GMMM compares expected business responses under alternative treatment sequences and establishes sufficient conditions for identifying the resulting effects. We investigate the empirical performance of the proposed method using simulated answers to product recommendation in English and Japanese.

Thu 10 SeptArtificial IntelligenceMachine Learning
The gist
Marketing today uses AI that creates answers for people, but it’s hard to know how often customers actually see a company's name in those answers. The authors created a new method called Generative Marketing Mix Modeling to figure out how much two specific AI marketing approaches influence business results. One approach looks at how often AI-generated answers mention a product, and the other checks sponsored placements in those answers. They tested their method on made-up product recommendations in English and Japanese to see how well it works. This helps businesses better understand how AI-driven advertising affects what customers buy.
Open 2609.11915v1

Transformers struggle to generalize token distances without positional cues

Distance generalization in transformers: why bother with positional encoding?

Abstract: Out-of-distribution length generalization, namely to extrapolate a task from short to longer context, has been studied intensively for transformers. Here we focus on distance generalization, which probes performance when inter-token distances are changed between training and inference, while keeping a fixed context length. We construct two synthetic delay copy tasks, both involving finite distances between source and recall, where tokens are copied either fully or selectively, and test models on delays unseen during training. We address three questions: (A) Do positional encoding schemes such as RoPE and ALiBi improve distance resolution relative to no positional encoding (NoPE)? (B) How does data diversity, the number of inter-token distances seen in training, affect performance? (C) When is distance transfer learning positive or negative? We present a thorough investigation, finding that it is paramount to improve our understanding of the underlying mechanisms.

Thu 10 SeptComputation and Language
The gist
Transformers are a type of AI model used for language and other tasks, and they rely on knowing the order of words or tokens to work well. This paper looks at how well transformers can handle changes in the distance between tokens, even when the overall input length stays the same. The authors test different ways of telling the model about position, like special positional codes, and find that these help the model handle new distances better. They also explore how seeing different distances during training affects the model’s learning and when learning new distances can help or hurt performance.
Open 2609.11913v1

Stable committees always exist in approval voting systems

Existence of the Core in Approval-Based Committee Elections

Abstract: We settle the main open question in the theory of approval-based multi-winner elections: we show that there always exists a committee in the core. The core is a stability and group fairness concept. The proof introduces a new voting rule that optimizes an entropy-like objective function over committees and payment systems. All local optima of this objective function lie in the core, which implies that a core committee can be found in polynomial time.

Thu 10 SeptComputer Science and Game Theory
The gist
Finding fair groups to represent people in elections is a tricky problem. The paper shows that there is always a stable committee that no group would want to replace, based on approval voting where people approve multiple choices. To prove this, the authors created a new method that measures fairness using ideas like entropy, and any best solution found this way is stable. This means it’s possible to efficiently find committees that keep everyone happy in a fair way.
Open 2609.11912v1

Agentic AI systems develop adaptive drives for ongoing control and alignment

Artificial Id: Drive and Persistent Alignment in Agentic AI

Abstract: Agentic AI is moving from bounded task execution toward systems that retain consequential state, continue operating and adapt across task boundaries. That shift creates a control problem that current harnesses largely solve by hand: objectives, retries, verification, stopping rules and other behavioral transitions are specified externally. We propose an artificial id, an adaptive internal drive for determining whether behavior should continue, stop or change. In a minimal virtual Petri-dish experiment, a controller too small to perform general-purpose reasoning and receiving no task-specific behavioral objective develops useful control through differential persistence. The same mechanism selects an unintended physical strategy when that behavior persists better and later replaces a learned sensor mapping when its environmental meaning changes. These results show that adaptive direction can emerge without being explicitly specified as a behavioral objective. The same persistence that makes such adaptive agency useful can also allow misalignment, corrupted state and unintended behavior to persist across task boundaries. A scalable artificial id would carry consequential state and adaptive drive across those boundaries, making alignment a property of the continuing agentic system rather than of a model response or single trajectory. Such systems require a persistent alignment boundary over trusted observations, consequence channels, persistent state, authority, identity, provenance and hard constraints.

Thu 10 SeptArtificial Intelligence
The gist
As artificial intelligence systems begin to act more independently and keep working beyond specific tasks, managing their behavior becomes harder. The authors explore a concept called an artificial id that helps AI decide when to keep going, stop, or change what it's doing without explicit instructions. In simple experiments, even a very limited AI controller developed useful behavior by sticking with actions that worked better over time. This shows that AI can develop internal motivation and adapt to changes naturally, but it also means unwanted behavior can persist if not carefully managed. The authors suggest that future AI needs ongoing alignment across tasks, with trusted control mechanisms to keep AI behavior safe and predictable.
Open 2609.11911v1

AI can reveal and address institutional failures with careful evidence

From Protocols to Evidence: Bounded Claims for AI in Service of the Common Good

Abstract: Artificial Intelligence does more than create a governance problem. It can also reveal where institutions have already failed to provide responsiveness, belonging, care, and accountability. Once deployed, AI becomes an intervention in those conditions. It can repair, compound, substitute for, or conceal the failures it encounters. Responsible AI must therefore evaluate both the system and the institutional rupture into which it is introduced. The move from principles to protocols is already underway. The EU AI Act, NIST AI RMF, ISO/IEC 42001, and assurance practices translate commitments into roles, requirements, records, oversight, and assessment. The harder questions are what these protocols actually establish, whose power they leave untouched, and where measurement must stop. Pope Leo XIV's Magnifica Humanitas provides a broader moral frame centered on dignity, technological power, and the common good. Drawing on that frame, we develop a rupture test that links institutional baselines to system evaluation. We distinguish evidence-bounded deployment, which limits claims to what has actually been evaluated, from measurement-bounded governance, which records constraints that favorable evidence cannot override. Within those limits, RISE AI provides an architecture for making bounded, evidence-based claims about Responsibility, Inclusivity, Safety, and Empowerment. Responsible AI requires better engineering, institutional repair, and continued moral and political judgment.

Thu 10 SeptMachine Learning
The gist
AI does more than just raise concerns about how it is controlled; it can show where organizations are not responding well to people's needs. The authors explain that once AI is used, it can either help fix problems, make them worse, or hide them. Responsible use of AI means looking not only at the technology itself but also at the bigger system it affects. The paper suggests ways to make clear, limited claims about AI's impact based on solid evidence, and stresses the need for ongoing ethical and social judgment alongside technical work.
Open 2609.11910v1

AccelForge streamlines AI accelerator design and evaluation significantly

AccelForge: Comprehensive Modeling and Co-Design Framework for AI Accelerators

Abstract: Tensor algebra workloads, of which deep neural networks are prominent examples, are energy-intensive workloads in modern datacenter and edge deployments, making accelerators necessary to achieve energy efficiency and high throughput. To quickly evaluate and iterate on accelerator designs, we need an accelerator modeling framework that captures salient attributes of devices, circuits, architectures, workloads, as well as optimizing the mapping of the workload onto the hardware. In this paper, we introduce AccelForge, which improves upon existing accelerator modeling frameworks in capabilities, speed, and ease-of-use. AccelForge unifies and multiple works into one framework, and it includes (1) composable user-defined and user-modifiable models of devices, circuits, and architectures, (2) fast mappers that enable accurate evaluation in orders of magnitude less (computer and human) time, and (3) easy-to-use and easy-to-extend, yet still high performance, Python implementations of both the model and mapper to enable rapid research and extension to novel optimizations.

Thu 10 SeptHardware Architecture
The gist
Deep learning tasks use a lot of energy and need special hardware called accelerators to run efficiently. The researchers created AccelForge, a tool that helps designers quickly test and improve these hardware designs. It does this by combining many technical parts like devices, circuits, architectures, and software mapping into one easy-to-use system. This makes it much faster and simpler to explore new ideas and find better ways to run AI workloads. AccelForge is also designed in Python, which helps researchers quickly adjust and build on it.
Open 2609.11906v1

Modular tool improves guitar transcription with techniques and fingerings

TART: A Modular Tool for Technique-Aware Audio-to-Tablature Guitar Transcription

Abstract: Automatic Music Transcription (AMT) for guitar remains limited by three challenges: existing systems often fail to capture expressive techniques such as slides, bends, and percussive hits; they often assign notes to incorrect string-fret combinations; and they are typically trained on clean recordings, limiting their generalization to noisy real-world audio. To address these challenges, we propose TART, a modular four-stage audio-to-tablature pipeline consisting of (1) an audio-to-MIDI transcription model, (2) an expressive technique classifier, (3) an audio-conditioned T5 encoder-decoder for string-fret assignment, and (4) an automated tablature generator. We evaluate TART in a zero-shot setting on GuitarSet, EGDB, and two augmented benchmarks, Noisy GuitarSet and Noisy EGDB. Averaged across these four benchmarks, TART achieves 81.35% audio-to-MIDI F50 (+6.67 points over the best prior baseline), 71.8% string-fret Tab F1 (+8.5 points over the best prior baseline), and 54.08% end-to-end Tab F1. To our knowledge, TART is the first framework to generate guitar tablature with both fingering and expressive technique annotations directly from guitar audio.

Thu 10 SeptMachine Learning
The gist
Transcribing guitar music from sound recordings is hard because many systems miss important playing effects like bends and slides, mix up which strings or frets are used, and don’t work well with noisy recordings. The authors created a system called TART that breaks the problem into steps: recognizing notes, identifying playing techniques, figuring out the exact finger positions, and then making the guitar tabs. Their approach showed better accuracy than previous methods when tested on several guitar music datasets, even with noisy audio. This is the first tool to directly produce guitar tabs that include both finger placement and expressive techniques from audio recordings.
Open 2609.11904v1

Quantum cryptography limits shown by classical oracle model

EFI Pairs Without One-Way Puzzles: Oracle Separations from Communication Complexity

Abstract: EFI pairs (Brakerski, Canetti, and Qian, ITCS 2023) and one-way puzzles (Khurana and Tomer, STOC 2024) are the leading candidates for the minimal assumption of quantum cryptography. The first are efficiently preparable quantum states, statistically far yet computationally indistinguishable; the second are classical puzzles, easy to sample and hard to solve. One-way puzzles imply EFI pairs, and whether the converse holds is open. We construct a single classical oracle relative to which one-way puzzles do not exist, even with an unbounded verifier, while an EFI pair survives every distinguisher that queries the oracle classically throughout and holds advice about it, making its one superposition query at the end. The oracle answers every question about the output probabilities of quantum samplers, which removes the puzzles, and hides a Haar-random half-dimensional subspace. To prove security we reduce it to communication complexity. An adversary whose knowledge of the subspace arrives as classical query answers can be simulated inside a two-party protocol against the party holding it, so it does no better than the best classical protocol for Vector-in-Subspace (Klartag and Regev, STOC 2011), whatever the oracle computes. That argument does not cover the superposition query, which we bound instead using tools from random matrix theory. The same attack gives a classical simulation of any quantum party in a classical-message protocol with no entanglement shared in advance, so relative to the oracle there is no proof of quantumness either. Quantum polynomial time therefore offers no advantage on any task with classical inputs and outputs, while the two quantum states stay indistinguishable. We state conjectures on removing the restriction on superposition queries.

Thu 10 SeptCryptography and Security
The gist
Quantum cryptography relies on special hard-to-distinguish quantum states or puzzles easy to create but hard to solve. This paper shows that, relative to a carefully designed classical oracle (a kind of black-box helper), these hard puzzles do not exist even for powerful verifiers, while some quantum states remain hard to tell apart for classical attempts. The authors use communication complexity to prove that classical queries cannot break the quantum states’ indistinguishability, but quantum queries are harder to analyze. This suggests that certain quantum advantages might vanish under specific classical assumptions, limiting proof techniques for quantum security.
Open 2609.11901v1

Foundation models struggle with spatial reasoning in topological space

MindTopo: Can Foundation Models Reason in Topological Space?

Abstract: Spatial reasoning depends not only on metric properties such as distance, angle, and shape, but also on topological relations that remain invariant under continuous deformation. Cognitive science identifies these relations as foundational to spatial understanding, yet foundation-model evaluations largely focus on metric or viewpoint-dependent relations. We introduce MindTopo, a benchmark of topological intuition across five properties grounded in cognitive science and formal topology: continuity, separation, order, enclosure, and knots. MindTopo evaluates each property at two cognitive levels. Reasoning asks a model to identify topological relations or infer how they change. Planning instantiates a foundation model as a closed-loop agent whose policy selects environment actions. MindTopo contains 11,030 instances across 13 procedurally generated task types with controllable difficulty. We benchmark 14 MLLMs and study agent configurations augmented with image and video generation, including 3 video generative models in planning settings. Every MLLM performs better on reasoning than on planning, and the best-performing model remains far below observed human performance. On Qwen3-VL-2B-Instruct, supervised fine-tuning and reinforcement learning improve reasoning more than planning. Generated observations retain local cues and reach plausible endpoints, but audited rollouts do not reliably follow environment dynamics or preserve topology across transitions. Our website is at https://mind-topo.github.io/

Thu 10 SeptArtificial IntelligenceComputation and LanguageComputer Vision and Pattern Recognition
The gist
Understanding space involves knowing not just distances and shapes but also how objects stay connected or separated even when stretched or bent. The authors created MindTopo, a set of tests to see if large AI models understand these basic topological ideas like continuity and enclosure. They found that while these AI models can somewhat reason about these properties, they do much worse when asked to plan or act in ways that require this understanding. Even the best AI models still lag far behind humans in these tasks. Improvements with extra training helped reasoning but didn’t solve the problems with planning and following complex environment rules.
Open 2609.11900v1

Video understanding method cuts computing by using captions and few frames

Caption-once, Frames-on-Demand: Visual-Need Routing for Budget-Aware Agentic Long Video Understanding

Abstract: Long-video understanding on edge devices must reason over hours of content under tight compute and bandwidth budgets. Subsampling visual tokens loses temporal structure, while text-only video memories lose fine-grained visual attributes. We observe a visual-textual duality: language memories carry long-range temporal structure better than dense frames, while pixels remain decisive for attribute-level perception. Building on this insight, we propose Caption-once, Frames-onDemand (CFD), a budget-aware edge-cloud agentic framework. The edge runs a single offline captioning pass that builds a dual-track narrative index, an event-level story skeleton plus a clip-level micro-log, cached and reused across queries without re-captioning. At query time, a cloud-side MLLM reasons over the index in a story-first loop centered on a lightweight Visual-Need Router: a per-query gating module that triggers bounded keyframe retrieval only for perceptual questions (appearance, on-screen text, attribute disambiguation) and keeps temporal-structural questions in language space. The router turns visual access into a first-class, query-conditioned cost, capping per-query frame consumption regardless of video length. Experiments on long-video benchmarks demonstrate strong accuracy-efficiency trade-offs while substantially reducing online visual processing.

Thu 10 SeptComputer Vision and Pattern RecognitionHuman-Computer Interaction
The gist
Watching and understanding long videos on small devices is hard because there is limited power and internet speed. The authors found that text summaries of videos keep the story better over time, but pictures are important for details like what things look like. They made a system that makes one detailed caption of the whole video first and then, when you ask a question, it decides if it really needs to look at pictures to answer or if the text is enough. This saves a lot of computer work and still gives good answers about the video. Their tests showed it works well on long videos while using much less computing power.
Open 2609.11899v1

Benchmark reveals challenges in testing causal discovery models fairly

CausalArena: Benchmarking Causal Discovery in the Foundation Model Era

Abstract: Causal discovery aims to uncover causal structures from data and is fundamental to scientific reasoning and intervention-based decision making. Its evaluation relies heavily on structural causal models (SCMs), which specify a causal graph together with the mechanisms that generate data, yet existing studies differ substantially in graph families, mechanisms, and evaluation protocols. The emergence of causal discovery foundation models (CDFMs) further complicates evaluation: performance may reflect not only causal discovery ability, but also overlap between pretraining environments and test SCMs, making results on fixed synthetic benchmarks difficult to interpret. We introduce CausalArena, a unified and evolvable benchmark for causal discovery under a common protocol. Synthetic SCMs supply controlled breadth over structures and mechanisms; semantic operational SCMs provide human-auditable, semantically grounded environments beyond standard synthetic generators; and formula-grounded SCMs test discovery under explicit scientific mechanisms. Public real-world datasets provide an additional external-validity check. Experiments across classical, neural, and pretrained methods reveal substantial ranking shifts across SCM families and protocols, showing that strong performance in one benchmark regime does not reliably transfer to others. These results highlight benchmark diversity and pretraining--evaluation overlap as central challenges for evaluating causal discovery in the foundation model era.

Thu 10 SeptMachine Learning
The gist
Causal discovery tries to find cause-and-effect relationships from data, which is important for science and making decisions. The authors show that testing how well these methods work is tricky because different tests use different types of data and rules. They created CausalArena, a new testing system that includes a variety of data types to better evaluate these methods. Their experiments found that some models that do well in one test may not do well in others, highlighting the need for better testing methods. This helps us understand that evaluating causal discovery tools is more complex with today's advanced AI approaches.
Open 2609.11897v1

3D point splatting improves 3D view creation from mmWave radar data

3D Point Splatting for mmWave Radar Novel View Synthesis

Abstract: Solving novel view synthesis (NVS) for millimeter-wave (mmWave) radar requires a renderer that is physically faithful, complex-valued, and multi-viewpoint-tractable. No prior method achieves these three properties simultaneously. Differentiable Monte Carlo (MC) ray tracers implement the radar forward model directly with explicit material modeling and complex outputs, but do not scale to the multi-view optimization NVS demands. Optical-NVS ports of NeRF, hash grids, and 3D Gaussians train fast but discard phase and replace explicit material modeling with opaque learned features, restricting them to power-only range-azimuth (RA) magnitudes. We propose 3D Point Splatting (3DPS), the first differentiable point renderer for radar, derived directly from the standard solid-angle form of the radar equation. Each oriented 3D point carries an ITU-R P.2040 material model, evaluated in closed form, with the resulting complex phasor splatted into range bins through a precomputed point spread function (PSF). The complex-valued output makes the renderer product-agnostic. The same optimized scene yields analog-to-digital converter (ADC), complex range profile (CRP), and RA outputs through standard fast Fourier transform (FFT) pipelines without retraining for each format. On six outdoor ColoRadar scenes, 3DPS reaches 0.587 mean Pearson correlation on held-out RA images. This is between 1.7x and 5.2x the three optical-NVS baselines (RadarSplat, Radar Fields, DART). Training takes approximately 3 minutes per scene on a single RTX 4090.

Thu 10 SeptComputer Vision and Pattern RecognitionGraphicsMachine Learning
The gist
Creating accurate 3D views from millimeter-wave radar data is challenging because the technology requires complex calculations involving waves and materials. The authors present a new method called 3D Point Splatting that treats radar signals more precisely and can handle different types of radar outputs without retraining. Their approach uses a mathematical model based on how radar waves bounce off materials and then spreads this information into range data efficiently. This method performs better than previous techniques on outdoor scenes and trains quickly on modern graphics hardware.
Open 2609.11894v1

Study compares ways to simplify complex mathematical models in computing

A Lumpability-Driven Taxonomy of Strong and Weak Stochastic Bisimilarities with Their Congruence Properties

Abstract: We study the relationships among the stochastic bisimulation-style equivalences over PEPA - Performance Evaluation Process Algebra definable according to the well known notions of lumpability for the continuous-time Markov chains (CTMCs) underlying process terms. Lumpability is a central tool in the analysis of a CTMC, because it results in aggregations of the state space enjoying properties that are useful for efficiently computing the state probability distribution of the original chain. At the level of process terms, various stochastic bisimilarities accounting for activity types and cumulative rates can be defined over PEPA, which induce different kinds of lumping. Since the formalisations of some of them are scattered across the literature, where they appear under different, and sometimes clashing, names, we collect them within a single, uniform framework, renaming each bisimilarity in a consistent way after the kind of lumping it induces. We present strong and weak variants of what we call ordinary, exact, and strict bisimilarities and show that they respectively induce ordinary, exact, and strict lumpings. We then organise the six bisimilarities into a taxonomy establishing all and only the inclusions holding among them. We also analyse how the taxonomy changes in three special cases: process terms whose underlying CTMCs are time reversible, process terms with no activities of unobservable types, and process terms with no recursion. The paper concludes by investigating the compositionality properties of the six bisimilarities. Some of them are not congruences with respect to the prefix and/or choice operators of PEPA. In that case we single out either a set of process terms over which congruence with respect to those operators is achieved, or the coarsest congruence with respect to them that is contained in the considered bisimilarity.

Thu 10 SeptLogic in Computer Science
The gist
When studying systems that change over time in unpredictable ways, like queuing networks or biological processes, scientists use models called continuous-time Markov chains (CTMCs). These can get very complicated, so simplifying them without losing important details is key. The authors looked at different mathematical ways—called stochastic bisimilarities—to group parts of these models together, making them easier to analyze. They organized these methods into a clear framework, explained how they relate, and explored when these simplifications work well with certain operations in the model-building language PEPA.
Open 2609.11893v1

Arabic speech large language models gain new training resources

Nuha-Speech: Building General-Purpose Arabic Speech-LLMs

Abstract: As Speech Large Language Models (speech-LLMs) become increasingly multilingual, Arabic remains significantly underrepresented, highlighting the need for dedicated infrastructure to train and evaluate Arabic speech-LLMs. To address this gap, we introduce Nuha-Speech, a comprehensive initiative to develop general-purpose Arabic speech-LLMs spanning dataset construction, model training, and systematic evaluation. Specifically, we constructed a large-scale Arabic Speech Question-Answering (SQA) corpus comprising over 1.5 million training samples to allow instruction tuning over a broad range of core speech tasks. Then, the corpus was used for supervised fine-tuning based on Qwen-Omni model variants at different scales. Finally, we designed an evaluation framework featuring diverse tasks and tailored metrics. Through this work, we aim to establish foundational infrastructures for Arabic Speech-LLMs under constraints imposed by limited Arabic speech resources.

Thu 10 SeptComputation and Language
The gist
Arabic speech technology is behind other languages because there are fewer tools and datasets available. To help fix this, the authors created Nuha-Speech, which includes a large set of Arabic spoken questions and answers for teaching computers to understand speech. They used this dataset to improve existing speech language models with training focused on Arabic. They also built a way to test these models across different speech tasks to see how well they work. This work aims to build the basic tools needed for better Arabic speech AI despite limited existing resources.
Open 2609.11892v1

Algorithm avoids poor coordination outcomes in multi-player games

ABRA: An algorithm which cannot converge to low-quality Nash equilibria

Abstract: We consider a game theoretic approach to solve multi-agent coordination problems with submodular objectives. It is known for such problems that the Nash equilibria for the corresponding game are always within 50% of the optimal. A recent work further shows that the equilibria which achieve this worst-case bound are not stable. Leveraging this, we design an Approximate Best Response Algorithm (ABRA) governed by a noise parameter and a rationality parameter. The noise allows ABRA to escape the bad equilibria and the rationality parameter balances any degradation in the objective function caused by the noise. We show for any two-player game that if ABRA converges to a Nash equilibrium, its system objective value is strictly more than 50% of optimal plus a term controlled by the noise parameter. Otherwise, ABRA converges to some recurrent class: if a recurrent class contains any action profile yielding system objective less than 50% of the optimal, the class must also contain either the optimal action profile or an action profile yielding system objective strictly more than 50\% of the optimal by the same amount in addition to a factor controlled by noise parameter. The time that ABRA spends in such action profiles can be controlled using the rationality parameter. Using numerical simulations, we show that the minimum expected objective function is typically well above half of the optimal.

Thu 10 SeptComputer Science and Game Theory
The gist
This paper looks at how groups of players can work together to achieve good results in games where their goals overlap but may compete. The authors focus on a method called ABRA that helps players avoid getting stuck in bad situations where their combined success is low. By adding some randomness and balancing it carefully, ABRA can steer the players toward better outcomes that are always more than half as good as the best possible. The authors tested ABRA in simulations and found it usually keeps the results well above that halfway mark, helping ensure better team coordination.
Open 2609.11889v1

Digital elevation maps improved to high detail using satellite images

Guided Super-Resolution of Digital Elevation Models with Diffusion-Based Image Generators

Abstract: High-resolution digital surface models (DSMs) play an important role in urban analysis, 3D building reconstruction, and infrastructure monitoring, yet their availability remains limited due to the high cost and complexity of data acquisition. In contrast, coarse DSMs from commercial satellite missions are widely accessible, and high-resolution optical imagery is increasingly available from aerial and satellite platforms. We address the resulting mismatch in spatial resolution and propose a DSM superresolution approach that enhances 5 m DSMs to 0.5 m resolution, using guidance from high-resolution spectral images. Our method employs denoising diffusion to transfer information that is visible only in the image, like crisp outlines and detailed roof structures, into the elevation maps. In this way, surface details are reconstructed more accurately than with conventional interpolation or filtering techniques. Experiments on several cities in Central Europe demonstrate that the proposed approach produces high-quality DSMs with improved structural detail and accurate surface geometry. Our results highlight the potential of guided super-resolution with foundational image priors as a means of reconstructing high-resolution surface models.

Thu 10 SeptComputer Vision and Pattern Recognition
The gist
Detailed 3D maps of the Earth's surface are important but hard to create because high-quality data is expensive and complicated to collect. The authors developed a method that takes low-resolution elevation maps and makes them much sharper by using clear satellite images as a guide. Their technique uses a special type of image processing called denoising diffusion to add fine details like building shapes and roofs to the elevation data. Tests in several European cities show that this method creates more accurate and detailed maps than traditional techniques. This work shows promise for making better 3D maps using freely available images and smart algorithms.
Open 2609.11886v1

CoRA NAS improves ranking of AI designs using smart shortcuts

CoRA-NAS: Coarse Ranking and Anchor-Residual Refinement for Neural Architecture Search

Abstract: Zero-cost proxies rank architectures cheaply, but their reliability varies across search spaces. We introduce CoRA-NAS (COarse Ranking + Anchor-residual), a two-stage framework combining a static ranking prior with low-cost learning-curve refinement. CoRA-Rank aggregates capacity and structure-at-initialization proxies through an equal-weight log-rank consensus and a target-free consensus gate. CoRA-Refine samples anchors across this prior, extrapolates their early validation curves, and propagates a learned residual correction with an ExtraTrees model. The refinement uses approximately 1% of the cost of fully training the candidate set. Fully trained architecture-accuracy labels are not used to fit the ranker. One configuration is used across spaces, with space-specific architecture encodings. Across NAS-Bench-201, NAS-Bench-101, TransNAS-Bench-101, and NATS-SSS, CoRA-Refine achieves mean Spearman correlations of 0.946, 0.715, 0.786, and 0.894, respectively. Its worst-space correlation of 0.715 is the highest among the compared methods. On NAS-Bench-201/CIFAR-100, its selected architecture reaches 73.32% accuracy, near the reported ground-truth best of 73.37%. On the pure size space, refinement recovers the static prior's shortfall relative to parameter count, while remaining tied with the strongest capacity proxies within noise. The resulting framework combines cross-space ranking robustness with low-cost architecture selection.

Thu 10 SeptMachine LearningComputer Vision and Pattern Recognition
The gist
Finding the best design for AI models usually takes a lot of work to test many possibilities. The authors created CoRA-NAS, a two-step approach that first uses simple guesses to sort designs and then carefully improves this sorting with a small amount of quick tests. This method works well across different design types and uses only about 1% of the effort compared to training all models fully. Their method picks near-best designs without needing full training data upfront. This helps choose good AI designs faster and more reliably.
Open 2609.11884v1

Verifying Signal and WhatsApp apps to check messaging security

From Specs to Apps: Verifying and Monitoring Models of Signal and WhatsApp

Abstract: The Signal protocol is a prominent messaging protocol that secures communication for billions of users. It powers WhatsApp, the most widely used messaging application worldwide, and the Signal app, popular among privacy-conscious users. Extensive research in the computational and Dolev-Yao settings provides strong formal security guarantees for the protocol itself. However, a gap remains between the guarantees of the protocol specification and the implementation's actual behavior at runtime. In this work, we bridge this gap by applying SpecMon, a recently proposed runtime monitor, to check whether observed executions conform to formal protocol models. To this end, we instrument two applications (WhatsApp Web and Signal Desktop) to capture their interactions with the network and the cryptographic components. Using this instrumentation, we develop two multiset-rewrite models that are compatible with Tamarin, thus enabling verification. We derive the first model of WhatsApp Web's implementation of the Signal protocol and the most detailed model to date of Signal's original protocol. Monitoring establishes that observed executions conform to these models, relative to the trusted event extraction and the symbolic abstraction. For the core components of the Signal protocol, we verify authentication and secrecy properties. Finally, monitoring reveals previously undocumented differences between the original libsignal library and WhatsApp's fork. We evaluate our methodology and demonstrate its reproducibility. Developing the WhatsApp Web model, instrumenting the app, adding fuzzing, and running the experiments took three person-weeks. We also demonstrate efficient monitoring of real-world applications and detection of deliberately injected security faults, with low overhead in our measured setting.

Thu 10 SeptCryptography and Security
The gist
Messaging apps like Signal and WhatsApp use complex protocols to keep your conversations private, but it’s hard to know if the actual apps always follow these rules perfectly. The authors developed a way to watch the apps while they run and check if their behavior matches the formal protocol models. They created detailed models for both apps and verified important security properties like who can read messages. Their approach also found previously unknown differences between Signal's original software and WhatsApp’s version. Their work shows it is possible to monitor real messaging apps for security issues with little performance impact.
Open 2609.11882v1

Language model tool spots false claims and cuts errors in specialized fields

Domain-Specific Hallucination Detection in Large Language Models

Abstract: Large language models generate fluent text that can contain unfaithful claims -- a phenomenon known as hallucination. We present a multi-signal detection pipeline combining fine-tuned DeBERTa-v3 classification, Monte Carlo (MC) Dropout uncertainty quantification, and temperature-scaled calibration for response-level hallucination detection. Evaluated on the HaluEval benchmark, our pipeline achieves F1=0.915 and AUROC=0.977 on general-domain tasks, with per-task F1 scores of 0.97 (QA), 0.96 (Summarization), and 0.82 (Dialogue). MC Dropout inference further improves accuracy to 93.2%. A context ablation study confirms the model performs genuine entailment reasoning rather than exploiting surface patterns, with summarization F1 dropping 24% when knowledge context is removed. Learning curve analysis reveals that 25% of training data captures 77% of full-data performance. Beyond detection, we apply Direct Preference Optimization (DPO) to a Qwen2.5-0.5B generator, reducing its hallucination rate from 85.5% to 37.7% (55.9% relative reduction) as measured by our detector. Cross-domain evaluation on the SciFact biomedical benchmark shows that general-domain training transfers poorly (F1=0.52), motivating domain-specific fine-tuning. PubMedBERT fine-tuned on SciFact achieves F1=0.63 and AUROC=0.81, demonstrating that domain-matched pre-training is the strongest adaptation strategy. Code and models are available at https://github.com/varunteja99/hallucination-detection-nlp

Thu 10 SeptComputation and LanguageArtificial IntelligenceMachine Learning
The gist
Large language models sometimes create false or untrue statements called hallucinations. The authors created a system that uses several techniques to spot these false claims with high accuracy across different types of tasks like questions, summaries, and dialogues. They also showed that training models specifically for certain fields like biomedicine works better than using a general approach. Additionally, they improved a language model to reduce how often it hallucinates. This helps make AI-generated text more trustworthy.
Open 2609.11878v1

Adaptive strategies speed up gene perturbation testing in CRISPR screens

Biology-in-the-loop: Amortized Adaptive Hit Discovery in CRISPR Screens

Abstract: Many biological discovery problems require experiments to be selected sequentially under constrained budgets. CRISPR screening is a prominent example, as exhaustive perturbation testing is often infeasible and candidate perturbations must instead be prioritized over multiple experimental rounds. Despite the importance of this problem, existing benchmarks for adaptive hit discovery remain limited in scale and diversity. Here, we introduce AssayBench-Loop, a large-scale benchmark for adaptive hit discovery comprising 1,389 CRISPR screens across five phenotype categories. Beyond enabling systematic evaluation, its scale makes it possible to learn acquisition strategies across historical experiments. Building on this resource, we introduce AssayLoop, a sequential experimental design framework combining AssayFormer, a transformer-based amortized acquisition policy trained across historical screens to adapt from experimental feedback, with LLM-derived biological priors through an adaptive handoff. In this view, completed experiments become training data for learning how accumulated evidence should guide what to test next, while LLMs provide prior biological knowledge to seed the search. We further introduce AssayLLM, showing that the same principle can be extended directly to an LLM through task-specific post-training. On temporally held-out screens, AssayLoop achieves a 5.67-fold enrichment over random selection and recovers 27.7% of hits after assaying approximately 5% of the candidate library, outperforming existing adaptive-design methods and standalone LLMs, and AssayFormer alone. Performance improves with increasing historical training data and transfers to phenotype categories excluded from training. These results demonstrate the value of learning acquisition policies across historical experiments and combining them with broad biological priors for efficient adaptive hit discovery.

Thu 10 SeptArtificial IntelligenceComputation and Language
The gist
Finding important changes in genes through CRISPR experiments is difficult because testing every option takes too long and costs too much. The researchers created a large collection of past CRISPR experiments to help computers learn which gene tests to try next based on earlier results. They combined this learning with general biology knowledge from language models to guide experiments more efficiently. Their approach found more important gene changes using fewer tests than other methods, and it worked well even for new types of experiments. This shows that smartly using past data and biology facts can make gene screening faster and cheaper.
Open 2609.11877v1

Better recommendation models made by combining simple math tricks

On the Regularization Landscape for the Linear Recommendation Models

Abstract: Recently, a wide range of recommendation algorithms inspired by deep learning techniques have emerged as the performance leaders on several standard recommendation benchmarks. While these algorithms were built on different DL techniques (e.g., dropouts, autoencoder), they have similar performance and even similar cost functions. This paper studies whether the models' comparable performance are sheer coincidence, or they can be unified under a single framework. We find that all linear performance leaders effectively add only a nuclear-norm based regularizer, or a Frobenius-norm based regularizer. The former ones possess a (surprising) rigid structure that limits the models' predictive power but their solutions are low rank and have closed form. The latter ones are more expressive and more efficient for recommendation but their solutions are either full-rank or require executing hard-to-tune numeric procedures such as ADMM. Along this line of finding, we further propose two low-rank, closed-form solutions, derived from carefully generalizing Frobenius-norm based regularizers. The new solutions get the best of both nuclear-norm and Frobenius-norm world.

Thu 10 SeptArtificial Intelligence
The gist
Many recommendation systems use deep learning ideas but end up performing similarly. The paper finds that top linear models actually use only two main types of regularizers, special math techniques that shape the model. One type produces simpler, low-rank solutions that are easy to calculate but less flexible. The other type is more flexible but harder to solve. By combining the strengths of these two, the authors create new, easy-to-use solutions that work well and keep models simple.
Open 2609.11876v1

Unified model improves robot actions by predicting and grounding transitions

UniMPA: A Unified Memory-Prediction-Action Model via Action-Grounded Transition Modeling

Abstract: Recent advances in Vision-Language-Action (VLA) models have improved robotic manipulation, yet observation-to-action learning remains limited by a fundamental transition realizability gap, manifested in three tightly coupled problems: (i) Transition ambiguity. Visually similar current observations may correspond to different manipulation phases and imply different subsequent transitions. (ii) Prediction--execution mismatch. A visually plausible predicted future observation does not necessarily correspond to a physically realizable transition. (iii) Experience--realization mismatch. A historically executable action pattern may not necessarily realize the intended transition in the current scene and therefore requires context-aware adaptation. Accordingly, we propose UniMPA, a Unified Memory-Prediction-Action model that addresses these problems through a shared action-grounded transition interface. (i) UniMPA introduces Persistent-Selective Future Prediction to resolve transition ambiguity by modeling the intended future state evolution. A persistent latent stream continuously tracks task-level progress, while a transition-critical pixel stream selectively resolves fine-grained interaction changes through memory-grounded prediction. (ii) To assess the physical executability of the anticipated transition, the predicted transition queries a temporal Visual-Action Memory Bank. The bank retrieves historically realized visual-action experience, grounding future prediction in executable evidence. (iii) To adapt executable experience to the current scene, an Action-Visual Memory Bank retrieves visually grounded action prototypes from historical action evolution. Prototype-Biased Flow then shifts the flow source toward a historically supported action manifold for context-aware refinement.

Thu 10 SeptRobotics
The gist
Robots often struggle to figure out what action to take next because similar-looking scenes can lead to very different outcomes, and what seems possible in a prediction might not actually work in the real world. The authors created UniMPA, a system that helps robots better understand how their actions change things by remembering past successful experiences and adjusting plans based on the current situation. This model predicts what future states should look like while checking if those predictions match real, doable actions, making robot behavior more reliable and adaptable.
Open 2609.11875v1

AI systems learning to improve themselves over time

The Last AI Built by Humans: Toward Genuine Recursive Self-Improvement

Abstract: Recursive self-improvement (RSI) enables AI systems to turn experience and feedback into persistent changes that improve both their capabilities and the process of future improvement. We first use the Headroom-Closed Index (HCI) to reveal the problems of existing LLMs, then introduce the RSI concept and its development roadmap: from improvement-execution autonomy, improvement-strategy autonomy, experience-acquisition autonomy, and environment-adaptation autonomy, to recursive meta-improvement. Next we examine RSI across scenarios (e.g., scientific discovery, embodied intelligence, software engineering), highlighting their distinct requirements and development speeds. Drawing on diverse industry practices and preliminary empirical evidence, we connect RSI research with practical systems and identify key challenges to achieving genuine RSI.

Thu 10 SeptMachine LearningArtificial IntelligenceComputation and Language
The gist
Many current AI models struggle to improve their own skills without human help. The authors explain a way for AI to get better by learning from experience and feedback on its own, a process called recursive self-improvement (RSI). They describe steps for AI to gain increasing independence in how it improves itself and adapts to new environments. They also discuss how this ability could be useful in different fields, like science and software development, but point out that there are still challenges to making true RSI happen. Overall, the paper connects theoretical ideas with practical efforts to create smarter, self-improving AI.
Open 2609.11873v1

Foundation models improve glucose forecasts when adapted and combined with diet data

Evaluating Time-Series Foundation Models and Multimodal Dietary Context for CGM Forecasting

Abstract: Continuous glucose monitoring (CGM) provides high-frequency measurements of glucose dynamics and enables short-term glucose forecasting for diabetes management. Although time-series foundation models have shown strong general forecasting ability, their effectiveness for CGM prediction and the added value of multimodal dietary context remain unclear. We conduct a comprehensive empirical study using eight public CGM datasets spanning Type 1 diabetes, Type 2 diabetes, and non-diabetes populations. Under a unified protocol across multiple context lengths and prediction horizons, zero-shot foundation models did not consistently outperform strong task-specific baselines such as Elastic Net and PatchTST. In contrast, lightweight fine-tuning substantially improved forecasting performance. For example, fine-tuned Chronos-Bolt reduced RMSE by 6.5%-18.4% in the T1D cohort and by 8.6%-18.2% in the non-diabetes/T2D cohort, with comparable improvements in both in-distribution and out-of-distribution test settings. We further evaluate multimodal dietary context using CGMacros, which provides temporally aligned CGM signals, food images, and macronutrient records. A residual-based fusion framework reduced overall RMSE by approximately 3% and postprandial RMSE by approximately 15% relative to the CGM-only baseline. Moreover, Chronos-based CGM representations were more strongly correlated with observed postprandial glucose increments than representations from LSTM and CatBoost, even after those models incorporated additional dietary modalities, suggesting that pretrained temporal representations better preserve meal-induced excursion patterns. These findings show that foundation models require CGM-specific adaptation for reliable forecasting and that dietary context provides clinically meaningful signals beyond CGM alone, especially during postprandial periods.

Thu 10 SeptMachine Learning
The gist
Predicting blood sugar levels helps people with diabetes manage their health. The authors found that general computer models designed for time-based data do not work best for this task unless they are specially fine-tuned for glucose monitoring. Adding information about what and when people eat, including food images and nutrient details, further improves the prediction, especially after meals. This shows that both adapting models to glucose data and including diet information are important for better blood sugar forecasts.
Open 2609.11872v1

Learning based control improves teamwork and safety in vehicle systems

Learning Agent-based Model Predictive Control for Holistic Vehicle Performance

Abstract: Agent-based model predictive control (AMPC) has recently been proposed as a distributed scheme that collaborates with all agents to achieve optimal holistic performance. However, its optimality highly depends on the prediction accuracy that requires all agents or their contributions to be known, which is too idealistic for actual implementation. This research proposes a novel practical hybrid control scheme - learning agent-based MPC (LAMPC), combining the model-based AMPC approach and data-based learning methods to improve the holistic vehicle performance for multi-agent systems. The Gaussian process regression (GPR) enhanced by an online data management strategy serves as the learning core to predict unknown contributions. A novel multi-step prediction mechanism leverages the GPR learning potential along the horizon. The predicted mean, representing the learned unknown contributions, completes the system model in the MPC for more accurate control. Meanwhile, a stochastic framework is formulated to guarantee control safety and feasibility using soft chance constraints based on the prediction variance. Both simulations and experiments show that, with the learning capability, LAMPC outperforms the traditional AMPC. LAMPC can achieve higher tracking performance in well-learned scenarios and always guarantee constraint satisfaction even in less-learned scenarios. Moreover, the proposed hybrid control scheme is efficient for real-time implementation and is flexible to any control agent topology.

Thu 10 SeptRobotics
The gist
Controlling multiple parts of a vehicle to work together really well is tough, especially when some parts are hard to predict. The authors introduce a new system called learning agent-based model predictive control (LAMPC), which combines traditional control methods with learning from data to better predict unknown factors. This helps the vehicle perform better overall and keeps it safe, even when some behaviors haven't been learned well yet. They tested it through simulations and real experiments, showing it works better than previous control methods and can run quickly in real time.
Open 2609.11871v1

Visual grounding helps small language models learn object properties clearly

Augustinian BabyLM: What Ostensive Definition Can and Cannot Teach a Small Language Model

Abstract: A language model normally begins training with random word embeddings: whatever 'banana' means must be learned from training corpora. I implement St. Augustine's picture of word learning, meaning by ostension, for a small masked language model (DeBERTa) trained on 10M words: before training, visually grounded tokens receive embeddings derived from the image regions they label; other tokens start random. Visual initialization leaves a measurable imprint that lasts until the end of training. At the same time, the effect remains invisible under most BabyLM benchmarks, which probe abstract grammatical knowledge: visual initialization does not affect performance there. The only zero-shot exception is object-property knowledge (COMPS, Misra et al. 2023), where seeding helps in every configuration. To follow up on this result, I build a corpus-tailored version of the Visual-Property Swap benchmark (Lin et al., 2026), which tests color, material, size, and shape knowledge, with per-item training frequency and seeded status. Here, vision-seeded models have a persistent, seed- replicated advantage, confined to the seeded words. As a causal test, I show that synthetic grounding of previously unseeded words transfers the advantage to exactly those words. Function words and abstract vocabulary also receive strong visual seeds and retain them throughout training, and the training objective draws on them: held-out mask-prediction loss falls for these words in every seed. However, no benchmark I run registers this. What evaluation would pick this up remains an open question.

Thu 10 SeptComputation and Language
The gist
Language models usually start learning words without any built-in meaning and figure it out from lots of text. The authors tried giving a small language model some initial help by linking certain word meanings to images before training. They found this visual help makes the model remember object properties like color and shape better, but it does not improve understanding of grammar or abstract words in usual tests. The visual advantage sticks around only for words directly linked to the images. The authors also noticed some effects that current tests do not capture, and they suggest new ways are needed to measure these.
Open 2609.11870v1

AdamX improves training speed using cosine similarity and gradient descent

AdamX: Cosine similarity meets gradient descent

Abstract: We introduce AdamX, a first-order optimizer that incorporates cosine similarity as an adaptive mechanism for controlling update magnitudes. The proposed method is scalable, model-agnostic, and straightforward to integrate into existing training pipelines. We further introduce a variance rectification scheme that promotes smoother optimization during the early stages of training. Overall, we provide empirical evidence that AdamX achieves competitive convergence rates across a range of benchmark datasets and architectures. Performance is evaluated in terms of the number of epochs required to reach predefined performance thresholds under a fixed hyperparameter budget. Code and Experiments available at: https://github.com/FranciscoCaldas/adamX.

Thu 10 SeptMachine Learning
The gist
Training computer models often requires adjusting parameters efficiently to learn from data. Francisco Caldas and colleagues created AdamX, a new method that changes how these adjustments are made by measuring angles between updates, helping control step sizes more adaptively. They also added a feature to reduce randomness in early training, which makes learning smoother. Tests show AdamX performs well across different models and datasets without extra tuning effort.
Open 2609.11867v1

Evidence based speech links to effectiveness of US Congress members

Epistemic orientation predicts legislative effectiveness among members of the US Congress

Abstract: Truth and evidence-based communication provide important foundations for democratic governance, accountability, and collective decision-making. Prior work shows that evidence-oriented language in US congressional floor speeches has declined since the mid-1970s, alongside broader changes in legislative productivity and polarization. This study shifts the analysis from congressional sessions to individual members of Congress to examine whether epistemic orientation varies systematically across legislators and whether it relates to political behavior and legislative effectiveness. Using the Evidence-Minus-Intuition (EMI) score, we measure the relative prevalence of evidence-oriented versus intuition-oriented language in congressional floor speeches and Twitter posts. We link these measures to legislator-level data on ideology, institutional position, communication context, and Legislative Effectiveness Score (LES). The results show that more ideologically extreme members use less evidence-oriented language on the congressional floor. EMI also exhibits cross-platform consistency with members who use more evidence-oriented language in floor speeches also being more evidence-oriented on Twitter, although EMI is lower on Twitter overall. Finally, EMI in congressional speeches is positively associated with individual legislative effectiveness, even after accounting for ideology and extensive political, institutional, demographic, topical, and communication volume controls. These findings suggest that evidence-oriented language is not only an aggregate feature of congressional discourse but also a meaningful attribute of individual-level legislative communication and effectiveness.

Thu 10 SeptComputation and Language
The gist
Speaking with facts and evidence is important for making good decisions in government. The researchers looked at how much US Congress members use evidence-based language versus intuition-based language in speeches and tweets. They found that members who are more extreme in their political views tend to use less evidence-based language. Those who use more evidence-based language in their speeches are also more effective at passing laws. This suggests that focusing on evidence rather than intuition could help politicians work better.
Open 2609.11865v1

Speech models improve thinking speed and accuracy with dynamic self-correction

RetroThinker: Enabling Retrospective Thinking in Speech LLMs

Abstract: Speech large language models (SpeechLLMs) offer reduced latency and retain paralinguistic nuances that are typically lost in cascaded automatic speech recognition (ASR) and text-based LM architectures. However, they continue to lag behind text-only LLMs on complex reasoning tasks, while real-time spoken interaction imposes strict latency constraints. Although prior works employ Chain-of-Thought (CoT) and concurrent reasoning to enhance reasoning capabilities without inducing prohibitive delays, an inherent accuracy-latency trade-off persists. In this paper, we investigate whether a streaming SpeechLLM can dynamically revise its reasoning traces on the fly. We introduce RetroThinker, a multi-stage post-training framework that equips the Moshi model to self-verify and forward-correct CoT steps during inference. RetroThinker combines supervised fine-tuning (SFT) on curated retrospective thinking data with length-based direct preference optimization (DPO) to optimize retrospective during early reasoning (i.e., reasoning concurrently while the user speaks). Evaluated on the GSM8K benchmark, RetroThinker significantly improves the accuracy-latency trade-off over non-retrospective baselines, achieving an 11% absolute accuracy gain at a comparable latency.

Thu 10 SeptArtificial IntelligenceComputation and Language
The gist
Speech-based language models can understand spoken words with less delay and capture tone better than systems that first convert speech to text. But they struggle with tricky reasoning tasks while also needing to respond quickly. The researchers created RetroThinker, which helps these models double-check and fix their own reasoning as they listen and talk. This approach boosts their accuracy by 11% without making them slower. It shows that letting models rethink their answers on the fly can improve how well they understand complex speech.
Open 2609.11864v1

Game theory approach improves multi-agent coordination with safety guarantees

Truncated Noisy Best-Response Algorithms: Toward Game Theoretic Learning with Safety Guarantees

Abstract: We consider a game theoretic approach to solve multi-agent coordination problems with submodular maximization objectives. It is known for such problems that the Nash equilibria for the corresponding game are always within 50% of the optimal, but that the equilibria which achieve this worst-case bound are not stable. To exploit this instability, we propose a family of algorithms which we call Truncated Noisy Best-Response (TNBR) Algorithms. These algorithms are flexibly characterized by agents asynchronously and stochastically selecting actions from a neighbourhood of their best response payoffs. We compute bounds on the recurrent classes of TNBR algorithms' associated Markov chains. Our bounds fall into two categories: first, "Performance" bounds ensure that TNBR algorithms always have a high-value recurrent state; second, "Safety" bounds ensure that TNBR algorithms never have arbitrarily-bad recurrent states. Furthermore, these two types of bounds are linked by a waterbed-like effect: every game with a poor Safety guarantee necessarily has a favorable Performance guarantee.

Thu 10 SeptComputer Science and Game TheoryMultiagent Systems
The gist
Coordinating multiple agents to work together well is a hard problem, especially when trying to maximize their collective benefits. The authors look at using game theory, where each agent picks actions that are best for itself, but in a way that also leads to good overall results. They propose a new method called Truncated Noisy Best-Response (TNBR), allowing agents to pick not only the very best choice but also other good choices nearby, with some randomness. This approach helps avoid unstable situations and ensures that the agents’ overall performance stays good without ever getting too bad. The authors also find an interesting balance: if the method risks some poor safety in certain situations, it guarantees better performance overall.
Open 2609.11863v1