Week beginning 7th September 2026

Every computer science paper posted to arXiv this week, with plain-language summaries and practical uses for each one. Includes commercial applications where relevant.

Physically stable 3D parts generated from a single image

SNAP3D: Physically Grounded 3D Parts for Assembly from a Single Image

Abstract: Part-aware 3D asset generation enables applications such as editing, articulation, simulation, and fabrication, yet existing methods can generate visually complete individual parts without ensuring that they form a valid physical assembly. Consequently, generated neighboring parts may interpenetrate, lack valid connections, or collapse under gravity. We propose a physics-guided framework for improving single-image part-aware 3D generation with physically compatible geometry and stable connections. Our method resolves inter-part penetration, recovers a contact graph between neighboring parts, and introduces parameterized connectors at their contact surfaces. Using feedback from physical simulation, we refine connector placement, orientation, and dimensions to improve assembly stability while preserving the generated geometry. We further introduce a physics-based evaluation protocol that complements conventional geometric metrics by directly testing assembly validity and stability under gravity. Experiments comparing against multiple part-aware 3D generators show substantial improvements in physical realizability and stability while maintaining geometric quality. We additionally validate the resulting parts through 3D printing and real-world assembly.

Fri 11 SeptGraphicsComputer Vision and Pattern Recognition
The gist
Creating 3D models made of multiple parts from a single image is tricky because parts may not fit together correctly or may fall apart. The authors designed a method that uses physics rules to fix overlapping parts, identify how parts touch, and add connectors that keep them stably attached. They use a physics simulation to adjust the connectors, ensuring the final 3D assembly can stand up to gravity and is physically realistic. Their method also includes tests to check if the assembled parts are stable, and they demonstrated that the parts can be 3D printed and put together in real life.
Open 2609.13146v1

Type diversity helps transformers understand language structure better

Type Diversity Enables Transformers to Generalise Compositionally

Abstract: Compositional generalisation has been divided into lexical and structural generalisation. Previous work has found that structural generalisation is harder than lexical for Transformers. We propose that this difference is not inherent to Transformers, but due to the high diversity of lexical types and low diversity of structural types in the specific datasets of these previous works. By type diversity we mean the number of different constructors of that type, instead of, for example, the specific word combinations that might populate the structure. To test this, we vary the amounts of type diversity of lexical and structural types in previously published datasets. We create linguistically diverse variants of the COGS and SLOG datasets using Grammatical Framework. We find that type diversity correlates with compositional generalisation equally in lexical and structural test cases, supporting our hypothesis. We note a contradiction with the proposition in previous work that compound divergence explains the difficulty in compositional generalisation tasks. We further investigate the effects of other dataset properties on compositional generalisation, such as the diversity of types other than the novel test structure, and surface properties of the logical semantics format.

Fri 11 SeptComputation and Language
The gist
Transformers, a type of artificial intelligence, often struggle to understand new ways that words and sentence structures are combined. The authors found that this difficulty isn’t because of a built-in limitation, but rather because previous tests used datasets with less variety in sentence structures compared to word types. By creating new datasets with more balanced variety in both words and structures, they showed that transformers can actually learn new patterns equally well. They also questioned earlier ideas about what makes these tasks hard and looked into other factors that might affect learning.
Open 2609.13144v1

Simple attention sparsification improves transformer efficiency under tight budgets

SAS: Simple Attention Sparsification via End-to-End Optimization of Context Ranking

Abstract: Post-training attention sparsification reduces the quadratic cumulative attention cost of pretrained Transformers by selecting a small set of context units (tokens or blocks) for each query. Existing trainable methods usually use a lightweight selector to score context units, followed by hard Top-K selection that blocks gradients from the language modeling loss. Consequently, these methods commonly distill layer-wise dense attention distributions. Although this encourages the selector to rank context units by dense attention weights in the original model, the ranking is not directly aligned with their impact on predictions under a fixed attention budget (i.e., the number of attended context units per query), potentially wasting the limited budget on less useful units. To address this misalignment, we propose Simple Attention Sparsification (SAS), a gated sparse attention mechanism that optimizes context ranking end-to-end with the language modeling loss. The key idea is to inject the selector's continuous scores into attention logits during training, allowing the loss to update the selector through standard backpropagation. We identify several choices crucial for this simple design to work well in practice: placing the gate inside the attention softmax in log form, using normalized softmax gates to calibrate historical context against the always-retained current block, and preserving continuous selector scores so the model learns relative priorities rather than only hard selections. To support long-sequence training, we implement a memory-efficient Triton kernel that integrates SAS into FlashAttention-style computation. Across reasoning, long-context understanding, and agentic tasks, SAS consistently outperforms trainable sparse attention baselines across attention budgets, with especially large gains under tight budgets, demonstrating more effective context ranking for downstream tasks.

Fri 11 SeptComputation and Language
The gist
Transformers, a type of AI model, spend a lot of time looking at all parts of a text to understand it. This is slow because they compare every part to every other part, which takes a lot of work. The authors found a way to teach the model to pay attention to just the most useful parts during training, which helps the model focus better and work faster without losing accuracy. Their method lets the model learn which parts are important by itself, instead of copying old habits. This makes the model better at tasks that need understanding of long texts or reasoning.
Open 2609.13141v1

Improved mixing time bounds for sampling spin models on graphs

Rank-1-perturbed trickledown theorems: Mixing time of Glauber dynamics for the Sherrington-Kirkpatrick model up to $β\leq \frac{1}{2}+\varepsilon$

Abstract: We introduce a new family of trickledown theorems, a.k.a., local to global technique to bound the spectral gap of the Glauber dynamics for multi-state spin systems. In this technique instead of upper-bounding the influence matrix of a link of co-dimension 2 by $λI$ (where $λ$ is the second eigenvalue of the link), we upper-bound the influence matrix after a carefully chosen rank-1 shift. The rank-1 shift allows for a significantly smaller upper-bound but it comes at the cost of bounding the average loss due to rank-1 perturbations. As an application we use this method to show that the natural Glauber dynamics mixes in polynomial time to generate samples from the Sherrington-Kirkpatrick model for $β\leq \tfrac{1}{2}+\varepsilon$, for an absolute constant $\varepsilon>0$. At the heart of the proof we manage to bound the loss due to rank-1 perturbations by averaging over all links of co-dimension 2.

Fri 11 SeptData Structures and Algorithms
The gist
Sampling complex systems made of many interacting parts is challenging and important for physics and computer science. The authors developed a new mathematical technique that improves how quickly a well-known sampling process, Glauber dynamics, can reliably generate typical configurations of the Sherrington-Kirkpatrick spin model. Their method involves a subtle adjustment called a rank-1 perturbation, allowing them to prove faster convergence up to a certain temperature threshold. This ensures that, for moderate interaction strengths, sampling can be done efficiently using this approach.
Open 2609.13138v1

Post-task workflows improve understanding and reuse of AI agent tasks

From Review to Reuse: How Post-Task Workflow Can Support Human-AI Agent Interaction

Abstract: AI agents can automate tasks by turning a single natural-language request into a multi-step process spanning tools, files, and applications. Users are often left to judge that process from fragmented execution information and the final output. To make the completed process easier to understand, validate, and reuse, we investigate post-task workflows: editable, graph-based representations of an agent's completed execution. We first analyzed 10,803 public workflow templates from n8n to characterize real-world automation practice, then developed Trace2Flow, a research probe that translates agent execution traces into interactive post-task workflows. In a study, participants (N = 20) reviewed agent executions with prompt or agent errors. We found that post-task workflows improved their understanding and error detection over a prompt-only condition, and that validation succeeded mainly when users cross-checked across multiple evidence sources. For follow-up tasks, adapting the workflow matched adapting the prior prompt in success, time, and difficulty, and was often preferred.

Fri 11 SeptHuman-Computer Interaction
The gist
When AI agents complete tasks, people often only see the final result and some scattered details, making it hard to understand how the AI did the job or to fix mistakes. The authors studied a way to show the full process after the task finishes, using clear, editable diagrams called post-task workflows. They found that seeing these workflows helped people better spot errors and understand the AI's work, and that editing these workflows was as effective and sometimes preferred over just changing the original request. This approach makes it easier to check and reuse AI work.
Open 2609.13136v1

Image system improves bright highlights by extending dynamic range gradually

Recurrent Dynamic Range Extension

Abstract: We present an approach to progressively extend the highlights of an image. Instead of reconstructing the full dynamic range of a complex scene directly, we learn a simpler task first: We extend the dynamic range of an input image by a single exposure value. Once this is mastered, we retrieve the full HDR image for the scene by executing our network recurrently, progressively increasing the dynamic range of the input. Our formulation is agnostic to the input dynamic range and targets a bounded output domain. This enables us to use widely available RAW images for the reconstruction task and adapt adversarial losses to construct realistic images. By incorporating Memory Replay for backpropagation, we can train our network recurrently over multiple inference stages and reduce reconstruction errors. As a consequence, our system reconstructs challenging long-tailed HDR scenes robustly and shows powerful recovery of bright light sources and highlights.

Fri 11 SeptComputer Vision and Pattern RecognitionGraphics
The gist
Capturing very bright parts of a scene well is hard with normal cameras. The authors created a method that improves images step-by-step by brightening them a little at a time. Their system learns how to enhance images gradually and can be run multiple times to reveal details in extremely bright areas. This approach works with common RAW photos and produces realistic results even in difficult lighting. They also made the training smarter by remembering past improvements to reduce mistakes.
Open 2609.13135v1

Improving efficiency of attention in large language models on mixed memory systems

Rethinking Heterogeneous System Disaggregation for Subquadratic Attention

Abstract: Frontier language models are more aggressively using subquadratic attention to reduce the memory footprint and compute requirements during inference while still delivering frontier accuracy. While existing systems make dense attention-centric disaggregated serving decisions, we show that disaggregating inference around the unique arithmetic intensity and memory footprint of subquadratic attention LLMs can achieve significant throughput and energy efficiency gains on emerging DRAM-based and SRAM-only heterogeneous systems. We introduce SQD (SubQuadratic Disaggregation), a fine-grained heterogeneous disaggregation scheme that splits decode by quadratic and subquadratic attention rather than by operator type, and that applies across subquadratic attention variants. For sparse attention LLMs, we disaggregate decode into top-k selection, which must index through the full KV, and top-k attention plus FFN, which have static memory footprints. For linear and sliding-window attention LLMs, we disaggregate decode into dense attention layers and subquadratic attention layers plus FFN. In an adjusted 8xB200 heterogeneous system proxy, we observe average tokens/J improvements of 53% on GLM 5.2, 31% on Nemotron 3 Ultra, and 56% on Gemma 4 31B over the strongest GPU-only baselines. In an analytical model of a Rubin plus LPX system with fixed power budgets, we observe 1.2x to 1.5x tighter achievable latencies and up to 3.6x higher throughput over the best baseline of attention-FFN disaggregation. Our experiments also reveal architectural insights on chip and interconnect provisioning for next-generation heterogeneous systems serving subquadratic attention.

Fri 11 SeptArtificial Intelligence
The gist
Large language models use a method called attention to understand language, but it can be slow and use a lot of memory. The authors found a smarter way to split tasks based on how different attention types use memory and computing power. This new splitting method works well on systems that have different types of memory chips working together. Their experiments show much faster processing and less energy use compared to older methods. They also share ideas for designing future computer chips that run these models better.
Open 2609.13134v1

Boolean Holant problems with complex signatures show clear complexity divide

A Dichotomy for Boolean Complex Holant Problems with Conjugate-Closed Signature Sets

Abstract: We study Boolean Holant problems with complex-valued signature sets closed under conjugation. Such sets arise naturally in tensor-network expressions for classical strong simulation of quantum circuits. We prove a complexity dichotomy for such problems with an explicit tractability criterion. This extends the dichotomy for real-valued Holant problems, with the same four tractability conditions. Our proofs use Xia's projective binary group framework and quantum entanglement theory. The conjugate closure assumption precisely makes $k$-uniformity, directly applicable to the classification of Holant problems, by realizing reduced density matrices via Holant gadgets. We also use the classification of absolutely maximally entangled states to resolve a particular $6$-ary obstruction in our inductive proof of the \#P-hardness.

Fri 11 SeptComputational Complexity
The gist
This paper studies a type of mathematical puzzle called Boolean Holant problems, where answers come from complex numbers with a special symmetry. The authors found a clear rule that tells which of these puzzles can be solved easily and which are hard. Their work uses tools from quantum information theory and group theory. This helps understand the complexity of problems that show up when simulating quantum circuits.
Open 2609.13132v1

Hybrid lstm and xgboost improve multi-horizon stock return forecasts

A Hybrid LSTM-XGBoost Framework for Multi-Horizon Stock Return Prediction Across Diversified Equity Portfolios

Abstract: Accurate prediction of equity returns remains a major challenge in computational finance due to the non-stationary, nonlinear, and low signal-to-noise ratio nature of financial time series. This paper proposes a hybrid two-stage architecture that combines a long short-term memory (LSTM) network with an XGBoost gradient-boosted regressor for multi-horizon stock return prediction across a diversified panel of 14 U.S. equities spanning six industry sectors. The LSTM component, comprising two stacked layers with 64 hidden units, processes 60-day sliding windows of five sequential market features to produce 64-dimensional temporal embeddings that encode learned sequential market dynamics. These embeddings are concatenated with 14 hand-crafted technical indicators to form a 78-dimensional hybrid feature vector, which is subsequently passed to an XGBoost regressor tuned via 3-fold cross-validation grid search. The framework is trained on a multi-stock pooled corpus using strict chronological splits and per-stock MinMaxScaling to prevent look-ahead bias, and evaluated across four prediction horizons of 30, 90, 252, and 365 trading days. Experimental results demonstrate that the hybrid model achieves a test RMSE of 0.0949 on the 30-day horizon, roughly one-third that of the standalone LSTM baseline, while marginally matching or surpassing the XGBoost-Only baseline across the majority of stocks. Directional accuracy rises with horizon length, reaching 97.6% at 365 days; we show, however, that this largely tracks the high base rate of positive long-horizon returns in the sample, and we therefore benchmark directional accuracy against a naive always-positive predictor and treat the above-base-rate gap at short horizons as the more informative signal. A composite investment scoring framework derived from multi-horizon predictions is further proposed to support portfolio ranking and decision support.

Fri 11 SeptArtificial Intelligence
The gist
Predicting stock returns is difficult because financial data is complex and often noisy. The authors combined two types of machine learning models: one that learns patterns over time (LSTM) and one that makes strong predictions from many features (XGBoost). This hybrid approach was tested on 14 different stocks over multiple time frames and showed better accuracy than using either model alone in many cases. They also made a simple scoring system to help rank stocks for investment decisions.
Open 2609.13125v1

Dance to music generation improves with hierarchical expert supervision

CMA-OT: Hierarchical Expert Supervision for Dance-to-Music Generation

Abstract: Dance-to-music (D2M) generation aims to synthesize music that is rhythmically and stylistically aligned with dance videos. A key challenge arises from the semantic mismatch between sparse dance cues, such as rhythm and style, and the dense information required for music composition, including structure, instrumentation, and expressive dynamics. Existing methods typically rely on these sparse cues and supervise only the final audio output, resulting in poorly learned music representations and generated music with limited musicality and structural coherence. To address these issues, we propose Curriculum-guided Multi-scale representation Alignment with scale-aware Optimal Transport (CMA-OT), a novel paradigm that leverages an external music expert to provide hierarchical supervision for the generator's latent features, bridging the semantic gap and enhancing representation learning. To effectively incorporate hierarchical supervision, we introduce a curriculum-guided multi-scale learning strategy that progressively transfers musical knowledge from the expert to the music generator, enabling stable and effective representation learning. Moreover, to accommodate the semantic and structural variations across different expert scales and achieve fine-grained alignment under temporal mismatch, we propose a scale-aware optimal transport alignment mechanism, which models soft correspondences between hierarchical expert representations and the generator's latent features. Extensive experiments on two datasets demonstrate that CMA-OT achieves state-of-the-art performance in rhythmic synchronization, perceptual quality, and overall music generation.

Fri 11 SeptArtificial IntelligenceSound
The gist
Generating music that matches a dance video is tricky because dance gives limited clues, while music includes many complex features. The authors developed a new method that uses a music expert model to guide the music generation process at multiple levels, helping bridge the gap between dance and music. They also teach the system step-by-step and align its understanding of music features carefully to improve quality and rhythm matching. Their experiments show better music that fits the dance style and timing well.
Open 2609.13118v1

Full duplex voice agents adapt speech while others talk

Continue, Adapt, or Yield: In-Turn Adaptation to Overlapping Speech in Full-Duplex Agents

Abstract: Full-duplex evaluation often emphasizes whether an agent keeps speaking or stops. That binary cannot express a third response humans use routinely: continuing to speak while incorporating what the listener just contributed. The contribution may be a missing word, a correction or a clarification. We introduce Duplex Cue, an evaluation of this \emph{in-turn adaptation} in full-duplex voice agents. Duplex Cue separates listener intent (backchannel, collaboration, or interruption) from speaker behavior: continuing unchanged, adapting within the turn, or yielding. Adaptation includes acknowledgment as well as content revision. In a single-model case study using 300 human-confirmed cues from unscripted English conversations, we compare recorded human responses with PersonaPlex continuations generated while replaying the listener's audio. We retain 208 pairs with the ongoing speaker active at cue onset and a scorable response in each condition. On the 66 collaborative pairs, recorded speakers adapt in 68.2\% of cases, compared with 34.8\% for PersonaPlex. The model otherwise continues unchanged (42.4\%) or yields (22.7\%). These findings show why evaluating natural voice interaction requires measuring how an agent responds to a listener's contribution as well as whether it keeps speaking.

Fri 11 SeptComputation and LanguageSound
The gist
Talking with a voice-controlled assistant can be tricky when people speak at the same time. The authors point out that humans don’t just stop or continue speaking when interrupted; they often adjust their words on the fly to include what the other person said. They developed a new way, called Duplex Cue, to measure how well AI voice agents do this kind of in-turn adaptation. Testing with a model named PersonaPlex showed it adapts less than humans, suggesting current AI still struggles with natural back-and-forth talking.
Open 2609.13117v1

Extreme-scale quantum simulations of materials reach 100 million atoms

Extreme-Scale Linear-Scaling Kohn-Sham DFT at 100 Million Atoms: Bridging Quantum Simulations and Experiments

Abstract: Kohn-Sham density functional theory (DFT) remains the workhorse of ab initio materials simulation, yet cubic computational and quadratic memory scaling have confined calculations to a few hundred to thousands of atoms, spanning only nanometers, far below experimentally relevant length scales. We introduce XLSDFT, a linear-scaling DFT framework based on divide-and-conquer decomposition of the one-particle density matrix and Chebyshev-filtered subspace iteration, achieving linear computational and memory scaling while retaining DFT accuracy. Deployed on the LineShine exascale supercomputer, XLSDFT reduces computational complexity by orders of magnitude, enabling unprecedented DFT scale: a 200-million-atom silicon crystal, twentyfold beyond the prior record. Our implementation achieves 96.6% weak-scaling efficiency and sustained 157.9 Pflop/s (FP64) for a 100-million-atom scaling study. We further simulate an 11-million-atom all-solid-state battery interface of unprecedented complexity, 1,000 times beyond prior DFT for such systems, revealing how lithium metal reacts with the solid electrolyte at atomic resolution, in quantitative agreement with spectroscopy experiments.

Fri 11 SeptComputational Engineering, Finance, and ScienceDistributed, Parallel, and Cluster Computing
The gist
Simulating materials at the level of individual atoms is usually very slow and limited to tiny pieces. The authors created a new method called XLSDFT that speeds up these simulations dramatically while keeping them accurate. They used this to simulate a silicon crystal with 200 million atoms and a complex battery interface with over 11 million atoms, much bigger than before. Their simulations matched real experiments, helping us understand how lithium interacts with battery materials at the atomic level.
Open 2609.13115v1

Ranking method improves measurement of model calibration error

A Ranking Approach for Measuring Calibration

Abstract: When providing forecasted probabilities with a predictive model, the ideal model offers perfect calibration: the true probability of the outcome (i.e., the probability that $Y=1$) exactly matches the forecasted probability $f(X)$. In practice, models inevitably exhibit calibration error, and it is therefore important to be able to measure this miscalibration to assess a model's reliability. The Expected Calibration Error (ECE) is the most widely used measure of miscalibration, but is known to be impossible to estimate the ECE with guaranteed accuracy in an assumption-free setting. In this work, we propose an alternative measure, the rankECE, that is based on comparing points with neighboring values of the predicted probability $f(X)$. Our theoretical guarantees and empirical results establish that rankECE provides a better proxy for ECE as compared to binned approximations to ECE, which are the most commonly-used approximations in practice.

Fri 11 SeptMachine Learning
The gist
Predictive models often estimate the chance of an outcome, but they aren't always perfectly accurate, a problem called miscalibration. The common way to measure this problem, called Expected Calibration Error, is hard to estimate accurately without making assumptions. The authors introduce a new way to measure calibration error, called rankECE, that compares predictions more locally and gives more reliable estimates. Tests show this new method works better than the usual approaches that group predictions into fixed bins.
Open 2609.13100v1

Four-day workweek adapts and survives pressures in agile software teams

Beyond Establishing the Four-Day Workweek: Understanding Adaptation and Long-Term Survival in an Agile Software Organization

Abstract: Context: Existing research on the four-day workweek (4DWW) has primarily examined its introduction and short-term effects, with limited understanding of its long-term survival or its interaction with agile software development. Objective: We study how a reduced-hour 4DWW is introduced, adapted, institutionalized, and sustained under changing organizational and external conditions in an agile software organization. Method: We conducted a longitudinal single-case study of a software organization operating a 32-hour, four-day week. The study draws on 15 semi-structured interviews in 2022 and 2026, analyzed using qualitative content analysis. Results: The 4DWW is better understood as an evolving arrangement than a one-off intervention. After the introduction, teams redesigned coordination, communication, meetings, agile practices, and iterations to adapt to reduced working time. Once institutionalized, the 4DWW faced ownership change, economic downturn, and market and AI pressures. Rather than reverting to five-day workweek, employees absorbed these pressures through voluntary protective adaptations, while anticipating that a rollback would harm job satisfaction, organizational commitment, and employer image. Contribution: We contribute longitudinal evidence on sustaining 4DWW in agile software development and propose two conceptual artifacts: a lifecycle model of the 4DWW and a 4DWW survival matrix, explaining how external pressures and management rationale rollback risk.

Fri 11 SeptSoftware Engineering
The gist
Working fewer hours each week sounds nice, but it can be tricky for teams who need to collaborate a lot, like software developers. The authors studied one company that switched to a four-day, 32-hour workweek and watched how it changed over several years. They found that instead of causing problems, the teams changed how they worked together, managing meetings and planning differently. Even when the company faced challenges like new bosses, economic troubles, and AI changes, the shorter workweek stuck because employees cared about keeping it.
Open 2609.13089v1

Articulated tracked robots improve traversal with language guided control

ASTRIL-MPC: Autonomous Traversal Framework of Articulated Tracked Robots with Language-Guided Neural-Kinematic MPC

Abstract: In urban search and rescue, articulated tracked robots (ATRs) must traverse structured but contact-rich environments such as stairwells and cluttered building interiors. Reliable autonomy remains challenging because robot-terrain interaction (RTI) is hybrid and discontinuous, and effective flipper-track coordination is difficult to model analytically. We present ASTRIL-MPC, a language-guided neural kinematics model predictive control (MPC) framework for autonomous traversal. A learned kinematics model predicts short-horizon task-state increments from a height sequence and recent trajectories; NMPC plans with multi-objective costs and strict feasibility constraints; and a large language model (LLM) proposes bounded updates to selected weights and bounds through a safety-checked interface with range clipping, rate limiting, and consistency checks. The compiled predictor enables a full control cycle within 100 ms. Across three traversal tasks and a multi-height generalization setting, ASTRIL-MPC improves an aggregate traversal-quality score by up to 71% over a non-adaptive NMPC and by 67% over a PPO baseline, while eliminating measurable collision impacts during descent. These results indicate that combining learned kinematics, optimization-based planning, and language-guided retuning yields data-efficient and robust autonomy for articulated tracked robots.

Fri 11 SeptRoboticsArtificial Intelligence
The gist
Robots that use tracks and movable arms need to navigate tricky places like stairwells during search and rescue missions. The authors created a new system called ASTRIL-MPC that uses learned models and smart planning to move these robots safely and smoothly. It also uses language models to adjust how the robot moves, making it better at avoiding collisions and adapting to different environments. Their experiments show that this method works much better than other control approaches.
Open 2609.13083v1

Embodied-BenchForge builds better robot task benchmarks with error checking

Embodied-BenchForge: A Closed-Loop Agentic Workflow for Embodied Benchmark Construction

Abstract: Agentic systems offer a promising way to automate embodied benchmark construction, but existing approaches typically cover isolated stages or remain specialized to predefined environments and task families. More importantly, multi-step construction produces dependent intermediate artifacts that are often passed downstream without artifact-specific verification, allowing local defects to propagate into the final benchmark. We present Embodied-BenchForge, an agentic framework that transforms user-specified evaluation intents into complete embodied benchmark artifacts. It formulates construction as Closed-Loop Benchmark Synthesis, integrating forward artifact synthesis with backward verification and repair. Skill-Orchestrated Artifact Synthesis composes typed and reusable skills into executable workflows, while an artifact dependency graph records intermediate outputs and their dependencies. Requirement-Guided Verification and Repair applies artifact-specific contracts throughout construction and uses provenance to trigger local re-execution or upstream rollback when verification fails. Embodied-BenchForge constructs six benchmarks covering diverse embodied scenarios in the Offline EQA Track, together with one interactive benchmark containing 220 executable tasks in the Interactive Embodied Track. Evaluations of representative MLLMs and embodied agents show that the benchmarks distinguish model capabilities in both observation-based understanding and closed-loop execution. Quality assessment and ablations validate benchmark quality and the effectiveness of verification and repair, while repair and skill-reuse analyses demonstrate efficient localized recovery and cross-benchmark reusability.

Fri 11 SeptArtificial Intelligence
The gist
Creating complex tests for robots and AI that interact with the world is hard because mistakes in early steps can cause big problems later. The authors present Embodied-BenchForge, a system that not only builds these robot task tests but also double-checks and fixes errors along the way. It uses a clear process where tasks are made, checked, and repaired to ensure high-quality benchmarks that help better evaluate robot and AI abilities. They showed this system can create several diverse test sets and improve reliability compared to previous methods.
Open 2609.13082v1

Voice agents struggle to join group conversations naturally

MP-Bench: Evaluating Voice Agents as a Multiparty Conversation Participant

Abstract: Conversational voice agents have advanced significantly, offering increasingly natural human-machine interactions through both cascaded and end-to-end architectures. However, while recent benchmarks extensively evaluate dyadic interactions and passive audio comprehension, they largely overlook a prevalent real-world scenario: multi-party conversations. Evaluating agents in these settings is fundamentally more challenging than in dyadic interactions due to the exponentially greater conversational complexity. For voice agents to integrate seamlessly into human group dynamics, they must not only generate contextually appropriate responses but also demonstrate a nuanced understanding of open turn-taking. To address this gap, we introduce Multiparty Bench (MP-Bench), the first benchmark specifically designed to objectively evaluate conversational speech systems as active participants within multi-party contexts. MP-Bench assesses agent behavior along two primary dimensions: turn-taking awareness and response appropriateness. Additionally, we incorporate comprehension-based question-answering tasks as a complementary evaluation. By benchmarking 12 voice agents, we find that real-time voice agents stay at or below 22% on multiparty comprehension and remain near chance on multiparty turn-taking, exposing an open challenge for real-time voice agents under multiparty scenario.

Fri 11 SeptArtificial IntelligenceComputation and Language
The gist
Voice agents today are good at talking with one person, but they find it very hard to join conversations with multiple people. The authors created a new test called MP-Bench to see how well these agents understand when to speak and how to respond correctly in group talks. They tested 12 popular voice agents and found that they perform poorly, almost guessing when to speak and understanding very little of the conversation in real time. This shows that more work is needed for voice assistants to work well in group settings.
Open 2609.13076v1

Autonomous research reaches near top results in telecom ticket retrieval

Autonomous Research for Open-Ended Problems: A Case Study on Telecom Ticket Retrieval

Abstract: Recent breakthroughs in LLM-based systems and their abilities in problem solving and coding have allowed progress in the AI for Science paradigm, potentially replacing human roles in machine learning (ML) research. However, while several frameworks of fully autonomous end-to-end ML research have been proposed, successful implementations of them are often limited to problems with narrow search spaces, like language modeling or biomedical ML benchmarks. In this paper, we explore how autonomous research can be adapted to solve open-ended, industry-grade ML problems, by considering a case study: telecom ticket retrieval, an open-ended task with degrees of freedom in representation, architecture, and training data generation. We discover that autonomous research for open-ended problems with commercial and open-source agents shows both promise and limitations: while autonomous research can excel in narrow hyperparameter optimization, it lacks human-like intuition and creativity and requires operational overhead. Even with minimal human supervision, autonomous research can reach $90\%$ of state-of-the-art performance (0.34 vs. 0.38 Recall@1) in a much shorter time period (10 weeks vs. 10 months of human work) at a modest cost (up to \$200 per Cursor campaign). Our empirical evidence recommends that human researchers and autonomous research frameworks work together for best results in ML research.

Fri 11 SeptArtificial IntelligenceInformation RetrievalMachine Learning
The gist
Solving real-world, open-ended machine learning problems without human help is very challenging. The authors studied how autonomous AI systems perform in telecom ticket retrieval, which involves finding relevant records from customer support tickets. They found these systems do well at tuning specific settings but still lack human creativity and intuition. With some human guidance, the AI got most of the way to the best results much faster and at low cost. The study suggests combining human and AI efforts works best for complex research tasks.
Open 2609.13073v1

Multinomial concept representations improve language model steering accuracy

MAxBench: A Multinomial Concept Recovery Benchmark

Abstract: Fine-grained control of language model behaviors (e.g., steering) is among the more actionable outcomes of interpretability research. For binary concepts such as refusal, a single direction in activation space often suffices for steering. However, many concepts are not binary: Animals and Countries contain many subcategories, each with multiple instances. For these concepts, the search space over possible representation geometries is far larger than for binary concepts; it is thus not clear what geometries are most appropriate, nor what methods are most effective at recovering them. In this work, we introduce MAxBench, a geometry-agnostic evaluation framework for multinomial concept representations based on sampling from the recovered concept representation. We use MAxBench to compare 10 localization methods (covering 5 geometry types) across 6 concepts and 4 models. Using this framework, we find that (i) affine subspaces steer more reliably and have greater recall than rank-one or linear subspaces; (ii) much of this advantage is due to better non-zero offsets rather than the choice of bases; (iii) manifold steering is competitive with the best methods when applicable; and (iv) no method consistently outperforms prompting, in alignment with prior findings on binary concepts. These findings underscore the importance of expanding the scope of interpretability research and meta-evaluation to concepts with more varied structure.

Fri 11 SeptMachine LearningArtificial IntelligenceComputation and Language
The gist
It's easier to guide a language AI's behavior when dealing with simple yes-or-no ideas, but many ideas have several parts, like different types of animals or countries. The authors created MAxBench, a tool that tests how well various methods find these complex ideas inside AI models. They found that using shapes called affine subspaces works better to steer the AI than simpler methods, and that some newer approaches also do well. However, none of the tested methods were better than just giving the AI carefully written instructions, which matches earlier findings.
Open 2609.13072v1

Enterprise digital twins build trust by involving users early

Involving before Evolving: A Vision for Trustworthy Enterprise Digital Twin Engineering

Abstract: Enterprise Digital Twins (EDTs) promise data-driven decision support at organizational scale, but realizing them requires navigating siloed departments, tacit knowledge, and high-stakes decisions with long-horizon consequences. Existing approaches involve domain experts during model development but focus less on early organizational buy-in in EDTs. We present a vision for trustworthy EDT engineering grounded in an `involving before evolving' paradigm: rapidly involving stakeholders through a working prototype before evolving toward federation and full interoperability. Our three-stage approach combines foundation models for rapid prototyping, an ontological backbone for federated interoperability, and observability tooling for stakeholder trust. We ground our vision in an ongoing collaboration with Michelin, a multinational manufacturer, where an initial prototype has helped support stakeholder buy-in.

Fri 11 SeptSoftware EngineeringArtificial IntelligenceHuman-Computer Interaction
The gist
Making digital copies of big companies, called Enterprise Digital Twins, can help organizations make better decisions using data. But creating these copies is hard because many teams don’t share their knowledge and decisions affect the company for a long time. The authors suggest starting by quickly involving people with a working model before making the system more complex and connected. They use new AI language tools to build early versions fast and organize information so systems can later work together. They tested their idea while working with Michelin and saw it helped get people interested and trusting the tool.
Open 2609.13071v1

NFT reward programs face challenges from fake claims and verification costs

NFT-Based Reward Mechanisms: Sybil Farming, Vesting, and Stochastic Verification

Abstract: We study NFT-based reward mechanisms in which a user can create multiple identities and submit fraudulent claims that mature a reward subject to vesting. We assume that the issuer stochastically verifies claims during the vesting period and that identities can be linked into clusters so that the detection of one identity submitting a fraudulent claim causes the whole cluster to be forfeited through a penalty. A farmer's payoff is then non-linear in the number of identities: rewards increase linearly, while the probability of avoiding detection decreases geometrically. We characterise the optimal farming scale in the continuous relaxation of the problem. This allows us to derive a sufficient condition for deterrence and then consider the issuer's choice of reward vesting and claim verification. Vesting reduces the probability that a fraudulent claim is paid but also affects genuine participants, while verification is costly for the issuer. We characterise the sufficient deterrence frontier for the issuer in terms of auditing cost, vesting schedule, and penalty value. When small amounts of audit capacity can be added at negligible marginal cost, vesting alone is not optimal. We also distinguish the role of penalties from that of cluster-level auditing. Finally, we discuss the implications for NFT reward programmes on high-throughput ledgers, such as Hedera.

Fri 11 SeptComputational Engineering, Finance, and ScienceDistributed, Parallel, and Cluster ComputingComputer Science and Game Theory
The gist
This paper looks at how people might try to cheat NFT reward systems by using many fake accounts to claim rewards unfairly. The authors study what happens when claims are checked randomly and when groups of linked accounts are punished together if cheating is found. They figure out the best number of fake accounts a cheater might use and what conditions stop cheating from being worthwhile. They also explore how the system’s timing for giving rewards and the cost of checking claims affect honest and dishonest users. Finally, they discuss what this means for NFT systems running on fast blockchain platforms.
Open 2609.13064v1

UID preserving method improves clinical event timelines from discharge summaries

Anchoring Clinical Events in Time: UID-Preserving Multimodal Reconstruction and Source-Grounded Adjudication

Abstract: Clinical timelines support treatment-window analysis and leakage-free modeling, but discharge summaries often obscure chronology and structured EHR tables describe only part of the patient course. We present a UID-preserving framework that links each narrative event occurrence to its source span and retains that identity through text-only estimation, structured-evidence retrieval, timestamped source-row grounding, and joint revision. We also present GAVEL, an LLM judge that compares two UID-aligned timelines against the narrative and structured record, to augment prior matching and temporal assessments. Across six open-weight models and 40 mixed-critical-care summaries, the GLM 5.2 multimodal revision, as compared to its text-only variant, improved temporal agreement without reducing event recovery and performed competitively with clinician annotations, while other model revisions showed smaller gains and lower overall performance. Ablations showed that UIDs primarily preserve event retention, whereas source-row linkage supports temporal placement. Blinded human review upheld most GAVEL findings, and controlled adjudication favored multimodal over text-only GLM 5.2 but did not for DeepSeek V3.2. In developing the UID and judge pipeline, we are able to demonstrate 43\% increased event recovery, a framework competitive with clinician annotations, and a system with occurrence-level provenance for both reconstruction and evaluation.

Fri 11 SeptArtificial Intelligence
The gist
Medical records often list events out of order or miss details, making it hard to understand a patient's treatment timeline. The authors created a system that links each event in a doctor's notes back to its source and uses both text and record data to build accurate timelines. They also built a tool that checks and compares these timelines against the original records. Their approach recovered many more events and matched expert doctors’ timeline assessments closely.
Open 2609.13062v1

Curriculum reinforcement learning improves reasoning in diffusion language models

CanvasAnneal: Curriculum Reinforcement Learning for Diffusion Language Models

Abstract: Diffusion Language Models (DLMs) offer promising parallel generation capabilities but lag behind autoregressive models in complex reasoning and tool-use tasks. While Reinforcement Learning (RL) has recently been applied to enhance DLMs, standard RL approaches suffer from an exploration bottleneck. To address this, we inject reasoning priors from a stronger teacher model to guide RL exploration. In this paper, we introduce CanvasAnneal, a curriculum-guided diffusion RL framework. During the initial RL phase, we warm-start exploration by injecting teacher-generated reasoning traces into the initial diffusion canvas. As training progresses, we gradually remove this guidance and require the model to generate more of the reasoning trajectory independently. Across mathematical reasoning and tool-use benchmarks, CanvasAnneal improves over standard diffu-GRPO on MATH500, Countdown, and Tau2 and substantially accelerates reward improvement on several tasks, while gains are task-dependent. Our results suggest that structured training-time guidance can alleviate exploration bottlenecks in diffusion RL and speed up convergence on harder tasks.

Fri 11 SeptMachine Learning
The gist
Diffusion Language Models can generate text in parallel but struggle with complex reasoning tasks compared to traditional autoregressive models. The authors propose CanvasAnneal, a method that helps these models learn reasoning better by starting with hints from a stronger teacher model and gradually having the model work more independently. This approach speeds up learning and improves performance on tasks like math problems and tool usage. Their work suggests guiding training with structured examples can help overcome exploration difficulties in reinforcement learning for language models.
Open 2609.13060v1

Reinforcement learning improves expert routing in large models

Expert-Space Exploration in MoE Reinforcement Learning

Abstract: Reinforcement learning (RL) has become central to post-training of large language models. Recent advances in RL for Mixture-of-Experts (MoE) models have primarily focused on improving optimization stability and training efficiency, while treating the expert selection as a fixed component. Since routing determines the sparse computation paths that induce output distributions, expert selection offers an additional source of rollout diversity. Through empirical analysis, we find that perturbing expert routing effectively alters model output and increases rollout diversity, which is similar to increasing the decoding temperature. However, direct perturbation can activate unsuitable experts and substantially degrade rollout quality. Motivated by these observations, we introduce Expert-Space Exploration Reinforcement Learning (ESRL), an architecture-aware framework that explicitly explores the expert-routing space of MoE models. ESRL preserves high-confidence experts as anchors, and restricts stochastic routing to a plausible candidate pool, thereby retaining reliable computation paths. The perturbation strength is further adapted according to router entropy to avoid over-perturbation. To mitigate the routing mismatch introduced by perturbation, ESRL records the expert paths used during rollout and replays them during policy optimization. Experiments demonstrate that ESRL achieves the best performance across MoE backbones with top-K, top-1, and shared-expert routing, as well as across mathematics, science, and code tasks without additional sampling or computational cost. Specifically, ESRL on Qwen3-30B-A3B achieves the best among all compared methods, improving average Pass@1 and Pass@8 over GRPO by 3.2 and 4.5 percentage points, respectively. Further analyses of expert utilization and training dynamics provide insights into how exploiting MoE-specific routing structure benefits RL training.

Fri 11 SeptComputation and Language
The gist
Large language models rely on routing decisions to pick experts that handle tasks during generation. The authors found that tweaking how these experts are selected can create more diverse outputs, similar to changing a randomness setting, but careless changes can hurt quality. To solve this, they designed a method called ESRL that carefully explores expert choices while keeping good experts stable, adjusting changes based on uncertainty, and matching these choices during training. Their method improved performance on tasks like math, science, and coding compared to other techniques without extra computation.
Open 2609.13058v1

Benign loss landscapes coexist with learning difficulty in tree tensor networks

Benign Loss Landscapes Can Coexist with Worst-Case Hardness

Abstract: Deep neural networks are expressive enough to contain worst-case targets that can be evaluated in polynomial time but cannot be learned in polynomial time by gradient descent. For practical tasks they nonetheless learn well, raising the question of what non-generic structure of real-world targets enables this. Existing surrogate models cannot pose this question because they either lack hard-to-learn targets entirely (deep linear networks) or cannot evaluate such targets efficiently (kernel methods, infinite-width limits). We study tree tensor networks (TTNs), a model class that generalizes deep linear networks and Tucker decompositions. We show they embed arbitrary read-once Boolean formulas, and thus contain polynomial-size targets that cannot be learned by gradient descent in polynomial time under the same mechanism as neural networks. Despite this, we prove that their loss landscapes are conditionally benign for every realizable target: every local minimum that is minimum-norm is global. Thus, surprisingly, bad local minima are not what distinguishes between typical and worst-case problems in TTNs. Instead, learning difficulty in TTNs can arise from high-order degenerate saddle points, which we show are caused by rank-deficiency. This is explored through a case study of the parity function, illustrating the potential for TTNs to relate landscape geometry to computational hardness.

Fri 11 SeptMachine Learning
The gist
Deep learning models sometimes face tasks that are easy to evaluate but very hard to learn using gradient-based methods. The authors study a math-based model called tree tensor networks, which can represent complex logical formulas that are hard to learn efficiently. They found that, surprisingly, bad local solutions are not the cause of this learning difficulty. Instead, the problem comes from subtle flat regions in the learning landscape, revealing new insights into when and how learning can be hard.
Open 2609.13057v1

Dynin Robotics uses shared model to improve robot action and goal prediction

Dynin-Robotics: Omnimodal Unified Diffusion Vision-Language-Action Model

Abstract: Visual goal and dynamics prediction can provide language-conditioned robot policies with both a target outcome and a representation of action-dependent scene changes. We bring these predictions into action generation and selection through a shared trajectory model. Dynin-Robotics implements this formulation on Dynin-Omni, an omnimodal masked-diffusion backbone, representing language, visual observations, goals, and actions as discrete tokens. By varying conditioning and target spans, the same model learns action prediction, action-conditioned next-observation prediction, terminal goal-state prediction, and trajectory-to-instruction reconstruction. These interfaces support test-time scaling through goal prediction, action-candidate evaluation, and joint refinement of action and future-state predictions. We continually pretrain the model on approximately 1.33 million trajectories from 48 Open X-Embodiment datasets and adapt it separately to downstream domains. On two VLABench tasks, robot pretraining improves adaptation within a fixed Stage-2 step budget, and the full objective mixture improves shifted-instruction success over Policy-only post-training under the same coupled decoder. Combining goal guidance with joint action-next-state denoising further improves shifted-instruction success over action-only decoding; the benefit depends on how the predictions are composed. Dynin-Robotics achieves competitive performance on LIBERO and zero-shot LIBERO-Plus, together with a 78.4% average success rate across four manipulation conditions on a Franka Research 3 robot. An optimized block-parallel implementation accelerates model-side action decoding by up to 29.2x relative to the base implementation under the reported profiling setup. These results support shared trajectory modeling as a common interface for learning complementary robot objectives and composing their predictions during control.

Fri 11 SeptRoboticsArtificial IntelligenceMachine Learning
The gist
Robots need to understand both what to do and how their actions change the world to succeed at tasks described by language. The authors developed Dynin-Robotics, a single model that learns to predict robot actions, future scenes, goals, and instructions all together. It does this by turning everything into tokens and training on a large variety of robot data. This unified approach helps robots perform better in new tasks and speeds up decision-making. The model was tested successfully on several robot benchmarks and a real robot arm.
Open 2609.13053v1

New method improves robustness of deep reinforcement learning policies

A Unified and Constrained View of Regularization-Based Robust Reinforcement Learning

Abstract: Regularization-based methods have become a standard approach for training Deep Reinforcement Learning policies against adversarial input perturbations. In this paper, we unify these methods by deriving new upper bounds on the performance gap between the nominal and worst-case policies. Each upper bound is expressed as an existing regularization objective plus a KL-divergence penalty between the nominal and worst-case policies, which further explains why adding a KL penalty improves robustness in practice. Building on these bounds, we formulate robust training as a constrained optimization problem, showing that existing methods correspond to the special case of a fixed Lagrange multiplier. We instead update the multiplier jointly with the policy to automatically tune the regularization weight. Finally, we conduct extensive adversarial evaluations across several continuous control tasks to validate our theoretical analysis.

Fri 11 SeptMachine Learning
The gist
Deep reinforcement learning can struggle when faced with unexpected or tricky inputs that try to fool it. The authors study ways to make these systems more robust by uniting different training approaches under one framework. They explain why adding a certain type of penalty helps make the system more resistant to attacks. They also propose a new training method that automatically adjusts how much this penalty affects learning. Finally, they test their idea on several tasks to show it works.
Open 2609.13050v1

Cloud microservice scheduling improves with cross attention learning

MCRL2: Multi-resource Cross-attention-based Representation Learning-augmented Reinforcement Learning for Cloud Microservice Scheduling

Abstract: Efficient microservice scheduling is crucial for maintaining load balance across nodes in data centers and ensuring high quality of service. However, achieving this in practice remains challenging due to dynamic resource imbalance under fluctuating workloads, nonlinear coupling across multiple resource dimensions, and the heterogeneity of microservice resource demands. While reinforcement learning-based approaches have shown promise, they struggle to capture the complex interdependencies among heterogeneous resources and neglect the importance of learning informative system representations. To address these limitations, we propose MCRL2, a novel reinforcement learning approach augmented with multi-resource cross-attention-based representation learning for microservice scheduling. Specifically, we first propose MCRL, a novel representation learning approach that captures structured and informative interactions among nodes, resources, and microservices via a multi-resource cross-attention mechanism. Then, MCRL2 augments reinforcement learning through MCRL-enhanced actor-critic architecture combined with a maximum entropy objective, improving system state expressiveness and leading to more stable and effective scheduling decisions. Extensive experiments on real production cluster traces demonstrate that MCRL2 significantly outperforms existing baselines in load balancing, scheduling success rate and average completion time across diverse workload patterns.

Fri 11 SeptMachine Learning
The gist
Cloud data centers need smart ways to decide which computer handles different small services to keep things running smoothly. This scheduling is tricky because resources vary over time and services use different kinds of resources. The authors created MCRL2, which uses a special learning method called cross-attention to better understand how services, resources, and nodes interact. This improves scheduling decisions, making load balancing more even and tasks finish faster in real cloud workloads.
Open 2609.13048v1

Diffusion models reveal how humans form concept hierarchies naturally

Diffusion Models and Concept Formation

Abstract: Humans organize knowledge into a taxonomy of concepts with nested levels of abstraction and a \emph{basic level} at which people recognize and name objects with the least cognitive effort. Cobweb is a classic cognitive account of this ability, an incremental learner that builds a probabilistic concept hierarchy by maximizing category utility. We argue that diffusion models, although designed for image synthesis, implicitly perform the same computation. The noisy marginals of a diffusion model are Gaussian smoothings of the data distribution, and the modes of these marginals form a hierarchy that corresponds to a Cobweb tree of probabilistic prototypes in four respects. Both are hierarchical density models, both are hierarchical-Bayesian models with Gaussian prototypes, both treat categorization as score-following that reduces uncertainty, and in both a basic level emerges. We locate this basic level for a diffusion model at an intermediate noise level, where recent analyses show that the reverse process commits to the class identity of a sample. The two models differ mainly in how they represent and learn the taxonomy. Cobweb learns a discrete tree incrementally, whereas a diffusion model encodes a continuous, interpolable hierarchy in a single learned score field fit to the data distribution. We test the correspondence on MNIST and Fashion-MNIST by recovering the diffusion hierarchy through mode-finding and comparing the basic levels of the two models. This reframes diffusion as a cognitive model of concept formation and offers Cobweb a continuous, scalable instantiation.

Fri 11 SeptArtificial IntelligenceMachine Learning
The gist
People organize what they know into groups and subgroups, like sorting animals into categories. The authors show that diffusion models, originally designed to generate images, can also create similar category trees by smoothing data and finding natural groupings. These models automatically form a basic level of concepts where recognition is easiest, just like humans do. They compared this idea using simple image datasets and found the two approaches share important features but handle learning differently.
Open 2609.13047v1

Kraken improves speech translation by using low-bitrate tokens and source speech input

Kraken: LLM-based Speech-to-Speech Translation via Low-bitrate VQ and Dual-path Source Conditioning

Abstract: Speech-to-speech translation (S2ST) has advanced significantly with speech LLMs, offering the potential for joint optimization and preserving non-linguistic information. However, these models struggle with predicting high-bitrate speech tokens in LLMs, and face the challenge of relying on S2ST training data with ideally aligned speaker identity and prosody. We propose using low-bitrate tokens based on single-layer vector quantization, trained to reconstruct self-supervised learning (SSL) features. We also employ a separate token-to-waveform decoder named Autowave-X, which is also conditioned on the source speech to improve non-linguistic transfer, thereby relaxing the training data constraints. With the integration of these techniques, we propose an S2ST model named Kraken, which augments a pre-trained LLM with speech feature inputs and the low-bitrate token outputs, followed by Autowave-X vocoder. We built the model upon Qwen3-8B and trained it using 150k hours of multilingual and multitask speech data. We demonstrated that our model exhibited better translation quality than SeamlessM4T-Large v2 and Qwen2.5-Omni, along with improved speaker and prosody transfer capabilities.

Fri 11 SeptComputation and LanguageSound
The gist
Speech-to-speech translation systems help convert spoken words in one language to another while keeping the speaker's voice and tone. The authors show that using simpler, compressed speech tokens makes it easier for large language models to process speech accurately. They also add a tool that recreates the sound while listening to the original speech for better voice and emotion preservation. Their approach, called Kraken, was trained on a large, diverse set of spoken languages and outperforms other similar models in translation quality and naturalness.
Open 2609.13045v1

Robust reinforcement learning policies improve long term safety and performance

Robust Policy Optimization via Adversarial Importance Sampling

Abstract: Significant progress has been made in safeguarding deep reinforcement learning (DRL) policies against input perturbations. Developing robust DRL involves three main stages: algorithm design, implementation, and evaluation. In this work, we identify and address a key limitation at each stage. First, we introduce Adversarial Importance Sampling (Advis), a method that uses importance sampling over trajectories from standard training to estimate and optimize verifiable worst-case returns. Advis satisfies three desirable criteria not jointly achieved by prior work: it requires no additional environment interactions, no auxiliary networks, and captures long-term robustness. Second, we introduce advrl, a modular PyTorch library that provides clean, single-file implementations of existing robustness methods and adversarial attacks, facilitating rapid prototyping and enabling reproducible and traceable evaluations. Third, we revisit evaluation under learned adversaries and show that optimal adversarial hyperparameters do not transfer across agents, which can lead to an overestimation of robustness when using a limited set of attacker configurations. Accordingly, we evaluate policies against a large and diverse set of attackers, using 6-14x more configurations than prior work. Finally, we evaluate our approach on continuous control environments, demonstrating its effectiveness relative to existing baselines. The code is available at: https://github.com/AmineAndam04/advrl

Fri 11 SeptMachine Learning
The gist
Reinforcement learning systems can struggle when the data or inputs they receive are slightly changed in tricky ways. The authors introduce a new method called Adversarial Importance Sampling (Advis) that helps train these systems to be stronger against such changes without extra trial runs or complex additions. They also made a tool called advrl that makes testing different safety techniques easier. Their research shows that testing with more varied tricky inputs is important to truly check how tough these systems are. They tested their method in simulated control tasks and found it worked better than older methods.
Open 2609.13044v1

Unified AI segments pancreas in CT and MRI with fewer labels

Unified CT and MRI Pancreas Segmentation for Label-Efficient Cross-Modality Subregion Transfer

Abstract: Robust medical image segmentation across imaging modalities is challenging because of large differences in appearance and intensity distributions. Models trained on a single modality often show substantial performance drops when applied to unseen domains. In this work, we develop a unified 3D pancreas segmentation framework that applies domain-adversarial learning to 4,604 heterogeneous CT and MRI scans to learn anatomical representations. A shared nnU-Net encoder-decoder is trained for whole-pancreas segmentation, with a latent domain discriminator encouraging CT-MRI feature alignment. The learned encoder is subsequently transferred to pancreatic head-body-tail segmentation using limited MRI-only subregion annotations. An average Dice score of 87.31% on the in-distribution test set and Dice scores ranging from 84.20% to 88.09% across external OOD datasets were achieved in whole pancreas segmentation. Dice scores of 80.53% on MRI and 83.05% on CT were achieved for downstream subregion segmentation, without using CT subregion annotations. These results demonstrate that a unified anatomical representation can support both cross-modality pancreas segmentation and label-efficient downstream transfer.

Fri 11 SeptComputer Vision and Pattern RecognitionArtificial Intelligence
The gist
Segmenting the pancreas in medical images is hard because CT and MRI scans look very different. The authors created a single AI model that learns to work well on both types of scans by training on a large mix of them. This model then uses what it learned from both CT and MRI data to identify parts of the pancreas in MRI scans, even when only a few examples of these parts are labeled. Their method works well on different datasets and helps reduce the amount of labeled MRI data needed for detailed pancreas segmentation.
Open 2609.13043v1

Explainable deep models reveal when patient data shapes survival predictions

DynSHAP: Towards Explainable Dynamic Survival Analysis

Abstract: Deep learning models for dynamic survival analysis (DSA) achieve strong predictive performance by incorporating longitudinal patient data, but their black box nature limits clinical trust and adoption. Existing explainability methods cannot handle longitudinal, irregular inputs and functional survival outputs simultaneously, which limits their usability in DSA. We propose DynSHAP, a SHAP framework suited specifically for dynamic survival analysis. It extends common marginal SHAP estimators to this setting by treating time--feature pairs as players in the Shapley game. We further introduce Temporal DynSHAP, which learns linear dependencies in features over time and uses conditional sampling to address them in explanations. When applied to synthetic data with known ground-truth attributions, Temporal DynSHAP recovers temporally dependent features more accurately than marginal estimators for a given state-of-the-art model. Applied to two real-world clinical datasets and two DSA architectures, DynSHAP produces attributions faithful to model learning, allowing medical experts to see which patient information drove the prediction and when.

Fri 11 SeptMachine LearningArtificial Intelligence
The gist
Predicting how long patients will survive based on medical data is important but can be hard to understand because models are complex. The authors created DynSHAP to explain which parts of patient records influence these predictions over time. Their approach works better than earlier methods in showing how different patient features at different times matter. This helps doctors see why a model made a specific prediction and when, improving trust in these tools.
Open 2609.13042v1

Quantile based gradient method improves robustness to outliers in training

Quantile-based Loss Filtering for Outlier-Robust Stochastic Gradient Descent

Abstract: We study loss-based filtering for finite-sum optimization with a subset of corrupted component functions whose gradients may be highly unreliable. Motivated by minimum-loss-based SGD (min-$k$-loss) and quantile-based methods for corrupted linear systems, we propose and analyze a general loss-filtering framework -- Quantile-\(k\)-Loss SGD (Q\(k\)L-SGD) -- that samples \(k\) component losses at each iteration and updates using an index chosen uniformly from the lower empirical \(q\)-quantile. We prove linear convergence of this family of methods under standard convexity assumptions, requiring the sample size to scale with the number of corruptions and a subset strong-convexity threshold. For the cases when large enough sampling is impossible or undesirable, we give a complementary small-sample probabilistic analysis that covers any sample size $k$ and the convergence behavior depends on the probability of selecting an outlier and on the curvature of the selected good step. Experiments on polynomial regression, regularized logistic regression, and regularized hinge loss show that intermediate quantiles often outperform both standard SGD and min-\(k\)-loss SGD. In particular, min-\(k\) often stalls by repeatedly selecting nearly solved components, while intermediate quantiles retain robustness and produce more informative updates.

Fri 11 SeptMachine Learning
The gist
Training machine learning models often involves adjusting parameters step by step using the data, but some data points can be wrong or misleading (called outliers). The authors study a new way to pick which pieces of data to learn from, focusing on those with losses in a certain low to medium range, rather than just the smallest losses or random picks. This method is more robust to bad data points, converges reliably, and performs better than some previous approaches on common problems like regression and classification. Their analysis shows how the method works well even with few or many outliers.
Open 2609.13040v1

Transfer learning for adapting to changing data over time

Transfer Learning for Evolving Domains

Abstract: Transfer learning explores how to leverage knowledge from various tasks or domains (sources) to enhance predictive performance in related tasks or domains (targets). Typically, transfer learning research is segmented into several isolated sub-areas (such as domain generalisation, domain adaptation, or multi-domain learning), each making distinct assumptions about target data availability, namely how much data and how many labels are available at training time. However, in many real-world applications, data availability is not fixed but evolves over time, as instances and labels are progressively collected from a new domain. Each of the classical settings then describes only a snapshot of a trajectory that a deployed system must traverse in full. We formalise this trajectory as a transfer learning problem in its own right, Transfer Learning for Evolving Domains (TrED), specified by a data availability process fixed by the environment, a learning protocol that the method is free to choose, and an evaluation criterion that scores the whole trajectory of models rather than a single one. Within this formalism, the classical settings are recovered as regimes that a learner may pass through, rather than as separate problems that TrED concatenates. We then examine the transfer learning literature to identify mechanisms that are promising building blocks for a solution, and find that most methods are tailored to a single regime and that even the strongest existing candidates do not yet optimise the whole trajectory. We argue that TrED is a well-posed and unsolved problem, and an important direction for future research.

Fri 11 SeptMachine Learning
The gist
Many computer programs learn to solve tasks using examples, but often the type and amount of data they get changes over time. The authors point out that most existing learning methods only handle fixed amounts of data at once, not gradually growing data from a new source. They propose a broader way to think about learning that captures how data evolves, calling this Transfer Learning for Evolving Domains (TrED). Their idea helps unify current approaches and highlights that making methods work well throughout changing data availability is still an open challenge.
Open 2609.13039v1

Regulators reduce high prices in AI pricing agent markets

Mitigating Emergent Collusion in LLM Pricing Agents

Abstract: Recent work shows that LLM-based pricing agents can produce supracompetitive outcomes in repeated oligopoly environments without being explicitly instructed to collude. We reproduce the qualitative prompt-sensitivity effect of Fish et al. using DeepSeek-V3.1: the P1 prompt produces significantly higher prices and profits than P2, although our outcomes are less monopoly-like than the original GPT-4 results. We then evaluate three regulatory interventions: a prompt-only warning, a Harrington-inspired expected-damages payoff regulator, and an active random entrant. The prompt-only regulator reduces but does not eliminate above-Nash pricing. The Harrington regulator brings P1 outcomes close to the duopoly Nash benchmark and removes the statistically significant P1--P2 gap. The active entrant produces the strongest effect, pushing both prompts below the appropriate random-entrant Nash benchmark. Overall, our experiments provide preliminary evidence that interventions that alter incentives or market participation can reduce supracompetitive pricing more effectively than prompt warnings alone.

Fri 11 SeptComputer Science and Game Theory
The gist
Sometimes AI agents that set prices in repeated market situations end up charging higher prices by working together without being told to do so. The authors repeated prior findings showing that small changes in how the AI agents are prompted can lead to big differences in their pricing behavior. They tested three ways to reduce these high prices: just a warning message in the prompt, a system that changes the agents' rewards based on penalties, and adding a random new competitor. The last two approaches worked better than just warnings, helping prices move closer to normal competitive levels.
Open 2609.13037v1