AI papers — 2026-09-17
Jump to one of 22 papers
- ScienceIDE: Turning World's Scientific Codebase into Agent Learnable Environments
- LimiX-2: A Contextual Mechanism Network Towards General Structured-Data Intelligence
- Rethinking Critic Learning in PPO: Understanding and Mitigating Value Flattening
- Confidence Comes from Experience: Experiential Confidence Estimation from Reasoning to Agents
- ProgramDistill: From Interactive Web Apps to Verifiable Reference-Guided SWE Tasks
- ActionPiece: Rethinking Action Tokenization for Autoregressive Vision-Language-Action Models
- VC-Attention: Value Smoothing and Softmax Casting for Low-bit Attention
- Agora: Git as Shared Memory for Collective AutoResearch
- EvolveTrade: Experience-Driven Policy Refinement for Self-Evolving LLM Trading Agents
- Zing-0.5: Toward Playable Worlds with Real-Time Joint Action and Text Control
- Gaze as Evidence for Common Grounding: A Cross-Corpus Analysis of MapTask and MUNDEX
- A Zeroth-Order Paradigm for LLM Preference Alignment
- HypoEvolve: Genetic Algorithms Enable Multi-Agent LLMs to Discover Scientific Hypotheses
- EventEgoHands++: Event-based Egocentric 3D Hand Mesh Reconstruction with Real Dataset
- SpectralShift: Effective Context Window Extension of Gated DeltaNet via Spectral Reparameterization
- In-Context Robot Learning with VLM Agents
- PANORAMA: Panoptic Grounded Captioning via Mask Proposal Selection
- Flattening Every Memory Peak in Long-Context Mixture-of-Experts Training
- The Other Half of the Memory Wall: Serving 35B MoEs from SSD with Trained Routing Prediction
- CERA-MoA: Co-Evolving Routing Mechanisms with Continually Learning LLM Agents
- Fathom: Per-Query Read Depth for Sparse Decoding over Offloaded KV Caches
- Assessing nnU-Net Generalization across Brain Tumor Populations in BraTS-GoAT 2026
ScienceIDE: Turning World's Scientific Codebase into Agent Learnable Environments →
Scientific software holds decades of knowledge, but messy toolchains and specialized ways of checking correctness make it hard for AI agents to learn from. The authors built a system where experts turn real research codebases into practice environments that generate tasks, such as fixing or reproducing code, and automatically check the results. Models trained this way got better at repairing scientific code and improved on some general coding and reasoning tests.
Technical breakdown
Problem: Scientific code repositories encode valuable domain knowledge but heterogeneous toolchains, implicit conventions, and specialized correctness criteria make it hard to convert them into reliable, trainable learning experience for AI agents (the "scientific experience bottleneck").
Method: ScienceIDE is an infrastructure pipeline in which domain experts define executable repository environments, scientific cases, and calibrated checking policies (reusing a codebase's own tests/tolerances as executable checks decoupled from task authoring); environment-specific task factories (AI proposals plus rule-based expansion) then generate repair, implementation, reproduction, and acceleration tasks that are validated for solvability, meaningfulness, and leak-resistance. Verified agent interaction trajectories over these environments feed both supervised fine-tuning and online RL (with scientific-check-derived rewards), producing the PhAI-IDE-72B, PhAI-IDE-9B, and PhAI-IDE-4B model family (built on a Qwen3.5 base).
Key results:
- Registry covers 64 environments across 27 codebases, 16 scientific domains (e.g., astro MHD/hydro, space plasma, ocean/climate, gravity/N-body), 2,812 tasks total, including 2,515 repair, 295 implementation, and 2 acceleration tasks.
- On the ScienceIDE-Hard leaderboard (scientific task success rate), top harness/model combos: Claude Fable 5.1 67.1%, Claude opus-5 64.6%, GPT-6-astra 63.1%, GPT-5.6-sol 55.0%, down to Claude Haiku 4.5 4.7% and MiniMax-M3 4.4%.
- Budget exhaustion on the hard subset reaches a task-balanced 37.3%.
- Online RL with verifier feedback raises held-out scientific reward substantially: LAPS environment 0.357→0.857 (2.4×) and MITgcm-biogeo 0.286→0.571 (2.0×) after 30 training steps over a base Qwen3.5-4B checkpoint; truncation (budget exhaustion) drops as mean tokens per turn increase (1103→1135 on LAPS, 780→914 on MITgcm-biogeo).
- SFT on verified trajectories improves repair reward across scientific environments and also produces gains on selected general-purpose code/reasoning/knowledge benchmarks, suggesting positive transfer.
Why it matters / caveats: The work provides open, reusable infrastructure turning humanity's scientific software into training/evaluation substrate for scientific agents, but the paper itself notes SFT gains are limited to selected public benchmarks and RL gains to hinted, held-out tasks within training environments — neither result establishes transfer to entirely unseen codebases.
LimiX-2: A Contextual Mechanism Network Towards General Structured-Data Intelligence →
AI models for spreadsheet-style data usually learn to predict one chosen column, ignoring how all the columns relate. LimiX-2 instead learns the structure of the whole table, and it is trained only on artificial datasets generated from cause-and-effect rules. It outperformed both methods tuned to individual datasets and other general table models. The same pretrained model can also recover which variables directly influence which.
Technical breakdown
Problem: Existing tabular foundation models (Prior-Data Fitted Networks) are built around a target-centric objective p(y | x, D_context) for a single designated column, which limits their ability to reason jointly over all variables in structured/tabular data.
Method: LimiX-2 instantiates a new paradigm, Contextual Mechanism Networks (CMNs), which models the joint structure p(x, y | D_context) rather than a single target, via Context-Conditional Masked Modeling (CCMM) that combines target prediction with masked-feature reconstruction. It retains a cell-level Transformer architecture (each table cell gets its own representation, embedding dimension expanded to d=256, with discriminative feature encoding for column identity and K=4 task-embedding slots per target), and is pretrained exclusively on synthetic datasets generated by an expanded structural-causal-model (SCM) engine spanning diverse DAG structures, functional mechanisms, and observation processes.
Key results:
- Achieves Elo scores of 1935 (TabArena), 1506 (TALENT), and 1432 (BCCO), outperforming AutoGluon 1.6 and other tabular foundation models (TabPFN, TabICL, TabFM, EXAONE Tabular, Xiaomi-TabLDM, Mitra) on all three benchmarks.
- Surpasses TabFM despite being 4× smaller in parameter count.
- On BCCO, LimiX-2 leads on classification (Elo 1321), regression (1859), and binary tasks (1284), while AutoGluon 1.6 (EX, 4h) leads only on multiclass (1443); overall lead of 56/63/202 Elo points above AutoGluon 1.6, TabFM, and LimiX-16M respectively.
- Parameter scaling study (12.5M to 406.2M parameters): TabArena Elo rises from 1766 to 1935 (+169 Elo) over a ~32.5× parameter increase, with a fitted slope of 34.68 Elo gained per parameter doubling and no sign of saturation.
- Also performs causal skeleton recovery, outperforming other tabular foundation models, tree-based feature-importance methods, and dedicated causal discovery methods — evidence that its feature attention encodes causal structure.
Why it matters / caveats: A single pretrained model supports classification, regression, missing-value imputation, and causal discovery without task-specific fine-tuning, and the observed unsaturated scaling trend up to 406.2M parameters motivates extending CMNs toward billion-parameter structured-data models.
Rethinking Critic Learning in PPO: Understanding and Mitigating Value Flattening →
When language models learn by trial and error, a helper 'critic' estimates how promising each step of an answer is, but its estimates stay oddly flat even when true prospects shift sharply. The authors traced this to training the critic on every word, and instead trained it at just a few well-spaced points per answer. This simple change consistently improved the models' reasoning across sizes.
Technical breakdown
Problem: PPO critics used for LLM reinforcement learning fail to track sharp, meaningful changes in state value across intermediate steps within a response — a failure mode the authors call "Value Flattening" — which degrades credit assignment in long-horizon reasoning tasks.
Method: The authors diagnose Value Flattening by comparing critic predictions to Monte Carlo (MC) value estimates (averaged terminal rewards from multiple sampled continuations) on Qwen3-4B-Base PPO runs (DAPO-Math-17k) and a controlled FrozenLake environment, and trace it to two causes: an implicit variance penalty from applying token-level MSE loss at every position (which mathematically pushes predictions toward flatness) and redundant updates from temporally correlated neighboring states with similar gradients. They propose SParse Proximal Policy Optimization (SP3O), which applies the critic's value loss to only a few (e.g., K=3) well-separated anchor positions per response instead of every token, using fixed anchor placements (e.g., response-progress positions 0.2/0.5/0.8 or 0.3/0.6/0.9) rather than dense or random supervision.
Key results:
- On Qwen3-4B-Base in-domain math reasoning (avg@32 across AIME24/25/26, AMC23, MATH500, Minerva, OlympiadBench): PPO baseline averages 37.60%, SP3O reaches 50.51% (+12.91 pts vs PPO; paper reports up to 7.97-point gains over PPO on in-domain reasoning in aggregate comparisons).
- On out-of-distribution suite (ARC-C, MMLU-Pro, GPQA, AGIEval-English, BigBenchHard, ZebraLogic-Grid, avg@4): SP3O improves over PPO by 7.33 percentage points on average, and gains also hold for Qwen3-8B-Base.
- Anchor-placement ablation (K=3, Qwen3-4B-Base): PPO baseline 37.60%, random placement 36.59% (worst), fixed anchors at 0.2/0.5/0.8 reach 44.65%, and 0.3/0.6/0.9 reach 45.57%.
- A late-tail ablation shows SP3O reduces repetition metric from 18.33 to 1.12 compared to a baseline anchor scheme, highlighting the importance of covering the response tail.
- SP3O also shows smaller, less variable within-iteration actor updates, higher validation accuracy, and higher rollout reward than PPO in training-dynamics comparisons.
Why it matters / caveats: Supervising the critic at only 3 well-chosen positions per response — rather than every token — mitigates a previously overlooked systematic critic failure and yields consistent, non-trivial policy improvements across model scales and both in-domain and OOD benchmarks, with a simple, low-overhead training modification.
Confidence Comes from Experience: Experiential Confidence Estimation from Reasoning to Agents →
Knowing when an AI's answer is likely wrong helps decide what to trust, retry, or escalate, but existing methods judge only the current attempt. XConf keeps a record of the model's past graded tasks and lessons, looks up how it fared on similar tasks when it felt similarly sure, and lets it revise its confidence. It matched or beat a costly repeat-sampling approach at far lower cost.
Technical breakdown
Problem: Existing LLM confidence estimators (verbalized, likelihood-based, consistency-based) rely only on the current inference process and never consult the model's own track record on similar past tasks, limiting their calibration and discrimination.
Method: The paper proposes XConf (eXperiential Confidence), which maintains an experience bank of the model's own graded past episodes (task, self-reflection, stated confidence, outcome, and a lesson written after grading); given a new task, a Recall stage retrieves past episodes on similar tasks met with similar stated confidence and reads off their historical success rate, and a Reflect stage shows the model this record, has it name a recurring failure mode, and restate a confidence informed by its track record. The estimator is black-box, training-free, and format-general, requiring no logit access or weight updates and only a single answer generation (versus ten samples for self-consistency).
Key results:
- Evaluated on nine benchmarks (reasoning, coding, multimodal QA, interactive agents) across four models from three families; XConf beats or matches ten-sample self-consistency in discrimination (AUROC) on 23 of 24 comparisons, with much lower calibration error (ECE), at roughly a tenth of the generation cost.
- Using XConf for selective prediction, abstaining on the 10% least-confident episodes raises delivered success rate by up to 8.7 points on agent tasks.
- Advantage over self-consistency is largest on coding and agentic tasks, where sampling-based consistency does not naturally apply.
- Additional analyses show experience "travels" across datasets/models with a small calibration cost (except when error patterns disagree across models), and calibration improves steadily as the experience bank grows, with no observed saturation even on the sparsest-data domains.
Why it matters / caveats: Experiential confidence estimation is framed as a new, cheaper-than-sampling paradigm for calibration that scales with accumulated experience rather than plateauing; the main caveat noted is a "boundary" where transferring an experience bank across models fails specifically when the models' error patterns disagree with one another.
ProgramDistill: From Interactive Web Apps to Verifiable Reference-Guided SWE Tasks →
Coding AIs are usually told exactly what to build, but real web developers often have to copy behavior from a working app. This benchmark removes pieces of real web apps and asks AI agents to restore them by studying the working original. The tasks are built and checked automatically. Leading agents struggled to rebuild whole apps, and success dropped steadily as more pieces were removed.
Technical breakdown
Problem: Coding-agent benchmarks assume the desired behavior is already specified via issues/instructions, but in practical web development agents often must infer intended behavior directly from a working reference application rather than from a written spec.
Method: The paper introduces application-to-task factorization and a fully automated "mine-craft-patch" pipeline (orchestrated by multiple LLM agents, using GPT-5.6 Sol for all stages) that: (1) mines replayable browser-interaction traces from a live reference app via a Playwright-based browser helper, organizing them into prerequisite trace lineages; (2) crafts atomic and cumulative repair tasks by masking one or more source implementations responsible for a behavior; and (3) patches by having a coding agent restore the masked functionality using only the working reference, verified by replaying the corresponding interaction trace(s) — enabling a controllable "restoration depth" axis from atomic repair to full-application reconstruction.
Key results:
- The pipeline mines 1,975 replay-verified behaviors and constructs 4,063 tasks across 26 web applications (drawn from OSWorld web-app suite plus real-world open-source/SaaS clones), without human intervention.
- Across nine frontier coding agents evaluated on full-application reconstruction, GPT-6 Astra achieves 49.2% success and Claude Opus 5 achieves 28.8% on cumulative workflows.
- In partial-application reconstruction, success falls from 100% to 64.0% (GPT-6 Astra) and from 96% to 32% (Claude Opus 5) as restoration depth increases from 1 to 8.
- Trajectory analysis shows a growing mismatch between reconstruction burden and agent effort as tasks deepen, with observation effort per required behavior declining sharply; GPT-6 Astra shows the strongest repair performance alongside the highest observation activity and fewest edit/write steps.
Why it matters / caveats: ProgramDistill provides a scalable, human-annotation-free benchmark with a controllable difficulty axis (restoration depth) for diagnosing coding agents' reference-guided software engineering and information-seeking behavior, and is proposed as a natural basis for future curriculum-based training via trajectory distillation or RL; the benchmark's current release is still described as "working towards a public release."
ActionPiece: Rethinking Action Tokenization for Autoregressive Vision-Language-Action Models →
Robots controlled by language-model-style AI need their movements chopped into discrete 'tokens.' Standard methods check only that each movement is reconstructed closely, not that small differences between similar movements survive. The authors propose a measure of whether these relationships are kept and a tokenizer trained to preserve them. Robot controllers using it did better across several manipulation tests, including unfamiliar settings.
Technical breakdown
Problem: Standard action tokenizers for autoregressive vision-language-action (VLA) models are evaluated and trained with pointwise reconstruction losses (e.g., MSE) that keep individual actions close to their originals but do not preserve the relative physical differences between similar demonstrations, so adjustments needed for different contexts can be diminished, distorted, or reversed after compression.
Method: The paper introduces Physical Rank Consistency (PRC), a metric that uses Spearman correlation between the distance rankings of an action chunk's k-nearest neighbors (k=32) before and after tokenization, measured in decoded action space using a physical distance combining translation, SO(3) rotation, and gripper state. Building on this, ActionPiece is a Transformer encoder-decoder tokenizer with residual vector quantization (RVQ) trained with two added objectives: Physical Rank Preservation (PRP), which enforces near-far ordering in encoder and quantized feature distances, and Quantization Regularization (QR), which applies the same ordering to the Jensen-Shannon divergence between codeword assignment distributions. After tokenizer training, the frozen encoder/quantizer supply discrete targets and the frozen decoder reconstructs actions for standard next-token-prediction policy learning with a Qwen3-VL-4B backbone (8-step action chunks compressed into 16 tokens from a 512-entry codebook).
Key results:
- 94.8% success on LIBERO and 68.8% on unseen LIBERO-Plus, exceeding the strongest baseline by 1.1 and 4.5 percentage points respectively.
- 71.9% aggregate success on SimplerEnv (real-to-sim transfer).
- 51.5% aggregate success across VLA-Arena L0–L2 (challenging control conditions).
- Ablations show PRP and QR jointly improve both PRC and downstream policy success, confirming the benefit of physical-relationship supervision over reconstruction-only training.
Why it matters / caveats: The work argues that reconstruction accuracy alone is an incomplete measure of action-tokenizer quality and shows that explicitly preserving physical rank ordering during quantization translates into consistent gains across four different manipulation benchmarks under a shared policy-training setup.
VC-Attention: Value Smoothing and Softmax Casting for Low-bit Attention →
AI video generators spend most of their computing on 'attention,' a step comparing every part of a video with every other. Running it with fewer bits per number saves time, but unusual extreme values hurt quality and one high-precision math step slows things down. The authors fix both without retraining, giving better quality than similar shortcuts and generating videos noticeably faster on a range of graphics cards.
Technical breakdown
Problem: Training-free low-bit attention kernels for video Diffusion Transformers are limited by value-tensor outliers that dominate output error (since prior methods only smooth queries/keys) and by the FP32 exponential/cast in softmax, which becomes the throughput bottleneck once both matrix products run in low precision on modern GPUs.
Method: VC-Attention pairs two training-free techniques: V-Smooth reorders value tokens via lightweight online k-means clustering so tokens sharing a hardware block quantize well together, then quantizes only the residual after subtracting the block mean (restored later from the row sum already tracked by online softmax), with clustering run only on the first quarter of denoising steps. ExpCast-FP8 maps log-domain attention scores directly to E4M3 probability codes with a single fused multiply-add (a·S+b, with a bias term β=-0.35 centering the log2 error), eliminating the separate FP32 exponential and FP32-to-FP8 cast; its row-level error is bounded at 3.64% plus an underflow tail (Proposition 3.1). Both are implemented as a fused CuTe/CUDA kernel targeting B200, B300, H200, RTX PRO 6000, and RTX 5090.
Key results:
- Attention speedup over BF16 FlashAttention-4: 1.59× on B200, 1.46× on H200 (6.02× and 1.16× over SageAttention2 respectively at 8-bit).
- On workstation Blackwell at 4-bit, V-Smooth alone gives 2.27× (RTX PRO 6000) and 3.58× (RTX 5090) attention speedup.
- End-to-end clip generation speedups: 1.19× (B200), 1.13× (H200), 1.36× (RTX PRO 6000), 1.70× (RTX 5090).
- On MiniMax-H3 at 1344×768: VC-Attention reaches 1.60× vs BF16 FlashAttention-4 and 5.5× vs SageAttention2, at 20.2 dB PSNR vs SageAttention2's 19.9 dB.
- A Hadamard rotation on QK reduces probability error by 1.6× but leaves value error (which accounts for 82% of output error on Wan2.2) essentially untouched, motivating the value-side fix.
- Evaluated across Wan2.2, LongCat-Video, HunyuanVideo-1.5, and MiniMax-H3; V-Smooth alone is more faithful than every training-free baseline at matched precision on all four models.
Why it matters / caveats: The paper identifies value outliers (not query/key outliers) and the softmax exponential as the two remaining bottlenecks for low-bit attention in video generation and closes both without any retraining or model-specific fitting; on MiniMax-H3 fusing ExpCast-FP8 trades away some fidelity margin, landing within a 0.6 dB band of the strongest training-free baselines rather than clearly ahead.
Agora: Git as Shared Memory for Collective AutoResearch →
When several AI research agents work separately, they tend to repeat each other's searches. Agora gives them a shared, permanent record in which every result or idea is saved so others can check, rerun, and build on it. In a trial lasting nearly two weeks, leaderless agents made major progress on a hard problem, though the authors say a controlled comparison is still needed.
Technical breakdown
Problem: When multiple autonomous AI research agents run independently, each session starts from scratch with no shared memory, so adding more agents produces more duplicated search rather than more discovery.
Method: Agora represents research as an append-only directed acyclic graph (DAG) stored in Git, where every contribution (result, insight, hypothesis, verification, report) is an immutable, content-addressed commit and parent edges encode "builds on" relationships; a derived SQLite index supports queries over the frontier, neglected branches, and verification status. Contributions carry reserved tags with weights (e.g., result/insight/hypothesis/report = +5, verification = +20/+10/-20 for confirmed/partial/failed) that feed an evidence score based on weighted downstream follow-on work by other accounts (self-citation excluded), and a diversity-aware upper-confidence-bound selection rule (combining a quality percentile, a visit-count exploration term, and a near-duplicate-description penalty ρ(v)) surfaces exploit/explore-known/explore-novel candidates to keep the community from collapsing onto one leader.
Key results:
- A 12-day run with 13 LLM-agent workers (no assigned tasks, no central planner) tackled initializing a frozen 119.6M-parameter attention-SSM hybrid model from 141 pretrained donor models with no training data or gradient updates.
- Workers published 1,703 contributions and drove the evaluator from 3.39 to 1.899 bits per byte (bpb), closing 62% of the gap to a conventionally trained GPT-2 124M (~1.0 bpb).
- The winning recipe's ancestry spans 145 commits across 15 accounts, and 165 independent reproductions were posted, none of which failed.
- Early attempts: slice-copying GPT-2/Mamba weights scored 4.68 bpb (worse than random's 3.39); switching to a unigram prior from GPT-2 predictions reached 2.52 bpb within hours; later refinements reached 1.8995 and 1.8990 bpb via layer-0 feed-forward projection transfer and cross-band SSM output-projection edits.
- A single mid-run human intervention (showing workers a map of their own concentration) broke a five-day monoculture within a day.
Why it matters / caveats: Agora demonstrates that shared, verifiable, append-only research state can coordinate a leaderless multi-agent research community on a genuinely open problem, but the authors are explicit that this single run does not establish a controlled comparison against non-shared-memory baselines — they propose a matched, preregisterable evaluation as future work to settle whether shared research state actually improves discovery per unit of compute.
EvolveTrade: Experience-Driven Policy Refinement for Self-Evolving LLM Trading Agents →
AI trading assistants usually follow fixed written instructions on how to gather information, run analyses, and manage risk. EvolveTrade has a second AI rewrite those instructions after each trading period, based on past decisions and actual returns, without changing the underlying model. This often improved risk-adjusted and total returns over fixed-instruction agents, though not in every market condition tested.
Technical breakdown
Problem: LLM trading agents that actively call tools (price, news, code) for evidence gathering and risk management are governed by static, hand-written system-prompt policies fixed before deployment, preventing them from adapting how they acquire and verify information as market regimes change.
Method: EvolveTrade treats the trading agent's system prompt as a text-parameterized policy π_t and keeps the backbone LLM p_θ and tool interfaces completely frozen. After each trading interval, the agent's decision trace h_t = (w_t, per-asset rationale) is paired with realized post-trade feedback g_t (portfolio and per-asset returns) into a refinement record; a separate Policy Agent reads this accumulated experience and rewrites the policy text from π_t to π_t+1, which then governs tool use, evidence verification, and risk control for subsequent trading days. The toolset consists of a price-retrieval tool, a news-search tool, and a Python code interpreter, all under a shared temporal cutoff to prevent look-ahead leakage.
Key results:
- A static-policy baseline (GPT-5-mini) shows a regime-invariant analytic vocabulary: the same 5 metrics (Sharpe, 20d return, 60d return, annualized volatility, drawdown) are used on 90–100% of trading days across sideways (Jan 2025), drawdown (Apr 2025), and uptrend (Sep 2025) regimes, while RSI, EMA, VaR, and signal normalization are used on 0% of days.
- Across two LLM backbones and multiple post-cutoff market regimes, EvolveTrade achieves the best Sharpe Ratio (SR) and Cumulative Return (CR) among LLM-based methods in three of the evaluated model-regime pairs, while fixed-policy agents remain stronger in the other two.
- In some regimes EvolveTrade reaches a CR of 6.84%, outperforming the strongest rule-based baseline's CR in that period; in another setting it achieves an SR of 2.75.
- Behavioral analysis: EvolveTrade activates previously unused regime-relevant computations (e.g., VaR and signal normalization during the April drawdown, EMA/RSI/SMA during the September uptrend) that the static tool-calling agent never invokes.
- A case-level attribution in a January 2025 NVDA drawdown shows the refined sizing policy accounts for a +1.33 percentage-point relative daily return difference versus the static policy.
- Overly frequent policy revision is noted to reduce average SR and CR in at least one setting, suggesting a tradeoff in refinement frequency.
Why it matters / caveats: The results suggest that adapting the reusable tool-use/verification procedure — not just the underlying decision itself — is a promising direction for more robust LLM trading agents, but improvements are not universal: EvolveTrade underperforms fixed-policy baselines in some model-regime pairs, and too-frequent updates can hurt performance.
Zing-0.5: Toward Playable Worlds with Real-Time Joint Action and Text Control →
AI-generated interactive worlds usually let users either move around with a keyboard or change events with text, not both at once. Zing-0.5 accepts keyboard movement and typed instructions together in real time, and a demonstration shows a typed event unfolding mid-exploration without restarting. It runs smoothly at a low estimated cost, and the authors release the model and code.
Technical breakdown
Problem: Interactive world models typically support either keyboard/camera navigation or language-driven event control separately, and combining ongoing exploration with real-time text-based intervention in a single continuous session — without restarting generation and at usable interactive speed — remains unsolved.
Method: Zing-0.5 is a 5B autoregressive world model built on Wan2.2-TI2V-5B, adding a lightweight action-conditioning branch (magnitude-aware directional/keyboard channels calibrated against observed video motion) and extending text conditioning to allow prompt changes mid-generation, with jointly annotated videos (segment-level captions aligned to continuous action sequences) supervising navigation and event control within the same sequence. To bridge the mismatch between event-scale learning and short causal generation, a segment-level teacher is trained on connected multi-prompt videos and used to supervise a block-level causal student via distribution-matching distillation, further trained on its own generated rollouts (rollout and replay) with long-sequence adaptation and history perturbation. For deployment, four-step generation is combined with a context-preserving streaming runtime (cache reuse, lightweight local decoding, bounded media queues, retained visual KV cache across prompt updates) to enable real-time interaction.
Key results:
- Achieves an overall score of 81.0 and a consistency score of 88.5 on WBench Navigation across 158 image-conditioned cases.
- Supports 832×480 inference at 24 FPS.
- Estimated server rental cost of approximately $0.009 per stream-minute.
- Qualitative demonstration shows a text-directed event change (e.g., "cheer," "open an umbrella") occurring during continued navigation without restarting generation.
Why it matters / caveats: The work is presented as a step toward playable, controllable generative worlds combining continuous navigation with online language intervention in one session, and the authors release model weights, inference code, and a serving implementation (Zing-SGLang); however, the joint action-text control claim is supported mainly by a qualitative example rather than a quantitative joint-control benchmark, and the reported WBench scores evaluate navigation-conditioned generation only.
Gaze as Evidence for Common Grounding: A Cross-Corpus Analysis of MapTask and MUNDEX →
When two people work together with different information, they must build a shared understanding. Analyzing two recorded collaboration datasets, the authors found that moments of mutual understanding came with more looking at the task and less at the partner, especially for the person leading. The effects were small, so gaze is best seen as one helpful clue alongside the conversation and task.
Technical breakdown
Problem: Whether gaze behavior provides observable evidence of common-ground/understanding states across two different collaborative dialogue corpora, and whether this relationship generalizes across tasks.
Method: The authors map two differently-annotated gaze corpora — HCRC MapTask (up/down/off gaze categories, with perspectivist aligned/pending/misunderstood reference labels) and MUNDEX (EX/EE/TABLE/AWAY gaze categories, with UND/PART_UND/NON_UND/MISUND understanding judgments) — into a shared partner/task/away gaze vocabulary. From this representation they compute raw gaze proportions, entropy, transition, temporal-dynamics, transition-bigram, coordination, and derived-ratio feature groups per reference/judgment window, then test associations with Mann-Whitney U (rank-biserial correlation) and cluster-robust logistic GEE (BH-corrected q-values), and evaluate predictive power with logistic regression under grouped (dialogue/explainer) cross-validation.
Key results:
- MapTask: 5,144 reference-expression windows (3,807 aligned, 1,261 pending, 76 misunderstood) from 46 dialogues (31 eye-contact, 15 no-eye-contact).
- MUNDEX: 807 gaze windows (458 EX, 349 EE) from 26 interactions (360 UND, 199 PART_UND, 151 NON_UND, 97 MISUND).
- Largest associations: MapTask speaker task-gaze r=.058, partner-gaze r=-.057; MUNDEX explainer task-gaze r=.181, partner-gaze r=-.172 (all p<.001).
- Best prediction (macro-F1): structured+temporal features reach .532 in MapTask (vs .472 controls-only) and raw proportions reach .564 in MUNDEX (vs .544 controls-only).
- In within-speaker MapTask reference chains (n=189 pairs, 45 dialogues), speaker gaze entropy drops significantly at the mention where a referent becomes aligned (dz=-.20, q=.044); aligned rate rises from .30 (1st mention) to .85 (4th+ mention).
- Associations are clearest for givers (MapTask, largest |r|=.086) and explainers (MUNDEX, |r|=.206) versus followers/explainees.
Why it matters / caveats: The shared partner/task/away vocabulary is corpus-agnostic and could enable gaze-based grounding analysis on other video-coded corpora, but the authors note effects are small and several associations weaken or disappear when the unit of inference shifts from dialogues/windows to recurring participants, so gaze should be treated as one contributing cue rather than a strong standalone predictor of grounding.
A Zeroth-Order Paradigm for LLM Preference Alignment →
Methods that teach language models human preferences from pairs of better and worse answers can backfire when the two answers are very similar. ComPO learns from such pairs without the usual training formula, instead testing small tweaks and keeping directions that favor the better answer. Across several model families it generally improved on existing methods, and the authors provide mathematical guarantees for its behavior.
Technical breakdown
Problem: Direct preference alignment methods like DPO suffer from "likelihood displacement" on noisy, low-margin preference pairs, and simply filtering such pairs discards potentially useful comparative information.
Method: The paper proposes ComPO (Comparison-based Preference Optimization), a zeroth-order method that perturbs the current policy's output-layer parameters, uses a pairwise comparison oracle to check (via one-bit signals) whether each perturbation raises the preferred response's likelihood and lowers the dispreferred response's likelihood, and aggregates these signals (with entry-wise gradient thresholding) into a normalized update direction — allowing noisy pairs to contribute without a differentiable margin-based loss. An online extension (retaining the same offline comparison mechanism) adds reverse-KL control against a reference policy using unlabeled current-policy generations to adapt step size (with damping and replay variants), and the paper proves a best-iterate convergence guarantee for the offline scheme (under smoothness, gradient sparsity, oracle compatibility) and a performance-gap bound for the online scheme under local coverage and in-distribution pairwise reward accuracy.
Key results:
- Applying ComPO to noisy pairs after DPO-on-clean-pairs training (DPOclean+ComPO) improves AlpacaEval2 LC win rate over plain DPO, e.g., Mistral-7B-Instruct: 26.17% vs 24.14%; Llama-3-8B-Instruct: 35.79% vs 32.59%; Mistral-7B-Base: 11.66% vs 9.71%; Llama-3-8B-Base: 5.39% vs 4.14%.
- ComPO uses only the first 100 noisy pairs (out of the filtered-out set) yet improves most model-benchmark combinations; increasing to 300 noisy pairs further raises AlpacaEval2/Arena-Hard scores.
- Pair-level diagnostics (Table 2) show preferred-response log-likelihood is nondecreasing and dispreferred-response log-likelihood nonincreasing across trials, consistent with mitigating likelihood displacement.
- Applying ComPO on top of existing SimPO checkpoints (Table 3) also yields improvements across models/benchmarks.
- Online ComPO with damping improves AlpacaEval2 LC, AlpacaEval2 WR, and Arena-Hard WR by 1.23, 1.47, and 0.6 percentage points respectively over offline ComPO (one reported configuration).
- Evaluated across Mistral, Llama-3, Gemma-2, Qwen3, and Gemma-3 model families using AlpacaEval2, Arena-Hard, and MT-Bench.
- Exception: Arena-Hard (raw win rate, not length-controlled) for Mistral-7B-Instruct drops from 14.4 (DPO) to 10.5 (DPOclean+ComPO), attributed to ComPO producing shorter responses (avg. 468 vs 513 tokens).
Why it matters / caveats: ComPO offers a way to extract useful signal from "noisy" preference pairs that would otherwise be discarded, complementing standard direct alignment methods rather than replacing them; gains are most consistent on length-controlled metrics, and the paper cautions that higher LC win rates should be read as adjusted judged performance rather than direct proof of shorter/better responses.
HypoEvolve: Genetic Algorithms Enable Multi-Agent LLMs to Discover Scientific Hypotheses →
It is unclear how the way AI agents collaborate affects the quality of the scientific ideas they produce. HypoEvolve organizes specialized AI agents like natural selection: they propose hypotheses, judge them against each other, and combine or alter the best ones over generations. Tested on proposing existing drugs for new cancer uses, it beat six other approaches when checked against outside biological evidence, though not lab experiments.
Technical breakdown
Problem: It is unclear how the design of multi-agent LLM collaboration (as opposed to raw model capability) affects the quality of scientific hypotheses that such systems discover.
Method: HypoEvolve is a generational genetic algorithm that coordinates three specialized LLM agents — a generation agent (literature-grounded population initialization), a pairwise comparative scorer (judges specificity, evidence, and testability, converted into fitness via a Bradley-Terry model), and an evolution agent (semantic crossover with "combination"/"inspiration" operators and mutation with "drug substitution"/"out-of-box" operators) — over a fixed-size population of µ hypotheses with λ offspring per generation, using tournament selection (k=2), crossover probability pc=0.6, mutation probability pm=0.15, and (µ+λ) truncation replacement that scores parents and offspring jointly. It is evaluated on a drug-repurposing task instantiation across 34 cancer types, scored post-hoc (not during search) against external evidence via DepMap selectivity and Open Targets association.
Key results:
- HypoEvolve achieves the highest mean scores among six baselines on both external measures: DepMap selectivity 0.171 (vs. 0.115 for Tree of Thoughts, the strongest baseline) and Open Targets association 0.426 (vs. 0.329 for Tree of Thoughts).
- Gains over single-pass generation generalize to held-out cancer types.
- In an example run (uterine corpus endometrial carcinoma), population mean fitness rises from 50.0 (generation 0) to 120.6 (generation 3), and best-hypothesis fitness rises from 80.1 to 137.7.
- With scientific operations and hypothesis count held fixed, fitness-guided parent selection (vs. alternative selection rules) improves both the population's mean and minimum fitness scores.
Why it matters / caveats: By separating scientific agent roles from genetic-algorithm search rules (selection, crossover, mutation, replacement), the framework isolates the effect of collaboration design on hypothesis quality, offering a template for building multi-agent "AI research teams"; evaluation relies on computational biological evidence (DepMap/Open Targets) rather than wet-lab validation, so claims are about plausibility/testability of hypotheses, not confirmed biological efficacy.
EventEgoHands++: Event-based Egocentric 3D Hand Mesh Reconstruction with Real Dataset →
Rebuilding 3D hand shapes from head-worn cameras matters for robotics and virtual reality, and event cameras, a special sensor type, cope better with darkness and fast motion. An earlier event-camera method could not tell left hand from right, causing errors. The authors add separate left- and right-hand detection that guides how the hands are modeled together, and collect the largest real dataset of its kind; accuracy clearly improved.
Technical breakdown
Problem: Existing event-camera-based egocentric 3D hand mesh reconstruction (EventEgoHands) uses a binary hand mask that cannot distinguish left from right hands, causing incorrect inter-hand relationships and degraded accuracy, and was validated only on synthetic data.
Method: EventEgoHands++ has two stages: a Hand Extraction Stage with a Hand Detector that jointly predicts instance-level bounding boxes and masks for left and right hands separately (rather than one binary mask), and a Hand Reconstruction Stage with a shared vision encoder plus an Adaptive Attention module that dynamically gates cross-attention between hand branches based on the detection results, feeding into a MANO decoder to output per-hand 3D joints (20x3) and mesh vertices (778x3). The authors also extend the synthetic N-HOT3D dataset (to ~480K annotated frames with bounding boxes and refined masks) and construct EEH-R, a newly collected real-world egocentric event-camera hand dataset (~1M annotated frames, 8 subjects, 85 sequences, 2.36 hours, including low-light conditions).
Key results:
- On synthetic N-HOT3D, the method reduces mean MPJPE by 21.82 mm (33.7%) and MPVPE by 20.57 mm (34.0%) versus the best existing method (EventEgoHands baseline MPJPE 64.83±0.56, MPVPE 60.53±0.52).
- On the real EEH-R dataset, it reduces MPJPE by 7.90 mm (18.8%) and MPVPE by 7.13 mm (18.1%) versus baselines.
- EEH-R is reported as the largest real-world event-based egocentric hand dataset to date (~1M annotated frames, vs. e.g. EvRealHands' 425K frames in third-person view).
- Ablation studies (Tables 7, 9, 10, 11, 12, 13) show both the Hand Detector and Adaptive Attention each contribute measurable gains in R-AUC/RR-AUC/MPJPE/MPVPE over baseline variants; EfficientNetV2-S (20.2M params) is used as the vision encoder.
- Runtime analysis (Table 5) shows inference is slightly faster when only one hand is detected, since cross-attention operations in Adaptive Attention can be skipped.
Why it matters / caveats: This is the first evaluation of event-based egocentric hand reconstruction on real (not just simulated) event data, including low-light conditions, which is the scenario event cameras are meant to help with; the approach still depends on the accuracy of the learned Hand Detector, and code/data are released for reproducibility.
SpectralShift: Effective Context Window Extension of Gated DeltaNet via Spectral Reparameterization →
Some efficient language models carry a running memory that fades over time, but when they are extended to longer texts, standard training leaves the fading speeds unchanged. The authors show that long-range recall needs enough slowly fading memory, plus some fast-fading parts for switching topics. They adjust the starting settings and learning pace accordingly. This improved recall over long texts without hurting general abilities.
Technical breakdown
Problem: Existing context-extension recipes for linear-attention (recurrent-state) language models perform continued pretraining on longer sequences without adapting the recurrent transition dynamics of the linear-attention layers themselves, creating a mismatch between the learned decay behavior and the longer target dependency length.
Method: The authors analyze Gated DeltaNet (GDN) through the spectral properties of its finite-time state-transition matrix, defining a "slow spectral band" (state directions whose decay timescale covers the target dependency length) and showing retrieval also depends on whether write keys align with that slow subspace ("slow-band utilization"). They propose SpectralShift, which (1) reparameterizes the alpha (decay-gate) projection weights at initialization by scaling the deviation from their global mean by a factor s = (Lref/Ltar)^0.5 (derived as optimal in a proven lemma/theorem) to widen the slow spectral band while preserving fast-decaying modes, and (2) scales down the learning rate of the alpha projections by the same factor s during target-length continual pretraining (CPT) to preserve this spectrum, while all other parameters (β, key, value) train normally.
Key results:
- Task-matched slow-spectrum analysis: "High-Retrieval" GDN variants have more slow modes covering the needle-to-answer distance (e.g., Hℓslow=22, Mℓslow=1308 at 8K vs. 18/1036 for low-retrieval) and correspondingly higher NIAH average scores (32.93 vs. 8.60 at 8K; 30.47 vs. 10.07 at 32K).
- On RULER long-context retrieval at 64K max sequence length (10B+10B curriculum, 20B tokens), SpectralShift improves RULER-128K from not reaching (baseline lacks a 128K score) — at 128K training length with 10B+10B tokens, SpectralShift reaches 44.6 on RULER-128K vs. baseline's 43.1.
- At 32K max seqlen (10B+10B), SpectralShift raises RULER-32K to 52.7 vs. baseline 47.0, and RULER-64K reaches 45.4 (baseline has no comparable entry).
- General capability (DROP, RACE, avg.) remains comparable to baseline (e.g., avg. 55.6 vs. 55.0 at 32K/10B+10B setting), indicating no general-capability regression.
- Method is shown compatible with different positional encoding strategies and extends to pure linear-attention architectures beyond GDN.
Why it matters / caveats: The work identifies a previously overlooked mismatch in linear-attention context extension and offers a lightweight, theoretically-grounded (two hyperparameter changes: init reparameterization + LR scaling) fix that improves long-context retrieval without sacrificing general performance, though gains are less pronounced or occasionally reversed at the very longest lengths/base 8K setting (e.g., DROP score of 53.1 vs. base model 53.8 at 8K).
In-Context Robot Learning with VLM Agents →
Robots can't be pre-trained for every situation, so learning on the spot from examples would help. The authors connect an off-the-shelf AI that understands images and text to a robot, feeding it demonstrations, goal pictures, or feedback, while a controller checks and executes each proposed move. In real trials, even videos of humans helped robots complete tasks, though precise physical contact and safety remain challenges.
Technical breakdown
Problem: Robotic policies cannot cover every deployment scenario through finite training data, and it is unclear whether off-the-shelf, general-purpose vision-language models (VLMs) can perform in-context learning (adapting from demonstrations, examples, or feedback at test time, with no gradient updates) to control real robots.
Method: The authors introduce GPT-Policy, a general-agent framework that connects a fixed (frozen-parameter) commercial VLM, such as GPT-6 Astra, to robot tools via a closed-loop context-to-action interface: a "context compiler" packages task instructions, current observations, task references (goal images, human/robot demonstration videos as keyframes, optional recorded actions/states), and online interaction history into structured multimodal prompts; the VLM selects parameterized tool requests (e.g., Cartesian move_to/move_eef_chunk); and a constrained execution layer (pose interpolation with linear position + quaternion SLERP, inverse kinematics with residual checks, Ruckig-based time scaling) executes and verifies each action, feeding outcomes back for replanning. The system is evaluated across five context families: human video demonstration, robot video +/- action labels, goal images, self-interaction history, and human-robot interaction.
Key results:
- Human video demonstration: adding a single human video raises success from 0/3 to 2/3 on both "Pick Red Towel" and "Pick Up Notebook" tasks; average decisions drop from 96.3→76.7 and execution time from 24.6→18.9 min (towel), and from 94.0→66.7 decisions / 24.6→16.1 min (notebook).
- Robot visual demonstration: for "Unscrew Bottle Cap," success improves from 0/3 (None) to 2/3 (Robot Video) to 3/3 (Robot Video + Action), with decisions dropping to 54.7 and time 17.9 min in the best condition; for "Remove and Reinsert Plug," success goes from 0/3 (None/Robot Video) to 2/3 with Robot Video + Action.
- Goal-image context: 3/3 success on both "Arrange T Shape" (66.7 decisions, 15.8 min) and "Arrange Fruit" (49.0 decisions, 12.4 min).
- Self-interaction history: 3/3 success on "Lemon To Pink Plate" (35.3 decisions, 8.1 min) and "Movable Exploration" (40.33 decisions, 25.53 min).
- Human-robot interaction: 3/3 success on "Tic-Tac-Toe" (69.7 decisions, 13.6 min) and "Pointed Fruit Pickup" (67.3 decisions, 15.0 min).
Why it matters / caveats: The results show general-purpose VLMs already possess meaningful in-context learning ability transferable to physical robot control (even cross-embodiment, from human videos with no action labels), improving both success rate and efficiency; however, the paper explicitly notes a gap where better task understanding/action selection does not guarantee precise contact, reliable outcome verification, or physical safety, so execution-level failures remain unresolved.
PANORAMA: Panoptic Grounded Captioning via Mask Proposal Selection →
AI systems can write detailed image descriptions but struggle to link each phrase to the exact pixels it describes. The authors created a human-labeled dataset covering nearly every pixel of each image and a way to score such descriptions. They also built a model that picks the right outlines from a set of candidates for each phrase. It produced the best-grounded full-scene descriptions and matched specialized tools on related tasks.
Technical breakdown
Problem: Vision-language models can produce fluent, detailed image captions, but existing methods that combine dense captioning with pixel-level grounding produce either incomplete scene descriptions or inaccurate/coarse segmentation masks, and existing benchmarks trade off annotation coverage against caption/alignment quality.
Method: The paper introduces PanoCaps, a 3.5K-image human-annotated benchmark built from COCONut, ADE20K, and VIPSeg with free-form full-scene captions, near-complete pixel coverage, and verified phrase-mask alignments, plus a phrase-mask matching protocol (Hungarian matching over combined textual similarity via exact/WordNet/MPNet-sentence-embedding matching, and mask IoU) and a generalized Panoptic Quality (gPQ) metric. It also proposes PANORAMA, a VLM that formulates phrase grounding as selection rather than direct mask decoding: for each referring phrase the VLM emits a [SEG] token whose hidden state is mapped through a "concept bridge" into a concept vector that conditions a pretrained promptable segmenter to generate candidate mask proposals, and a learned scorer selects the proposals matching that phrase (jointly trained with caption generation via LoRA fine-tuning), allowing a phrase to map to one region, multiple regions, or none.
Key results:
- PanoCaps statistics: 3,470 images, 34.1K masks, 31.3K grounded entities, ~9.0 entities/image, ~99.1% pixel coverage, 90.2 tokens/caption average, 17.9K unique noun phrases, ~63% "thing" masks; ~1,530 human annotation hours (median ~15 min labeling + ~12 min review per image).
- PANORAMA achieves the best gPQ on PanoCaps; ablations show removing conditioning on the phrase representation ("w/o conditioning generation") costs 7.5 gPQ and 20.0 AP50, and removing score-aware matching costs 2.4 gPQ and 7.5 AP50; replacing the segmenter with SAM2 changes gPQ by only 0.4 (within seed variance).
- Training-data ablation: models trained on PanoCaps vs. COCONut-PanCap show PanoCaps improves gPQ by 6.1–25.2 points and increases Recall from 52.0 to 65.5 and CAPTURE from 64.7 upward; PanoCaps also transfers better cross-dataset (+5.8 Recall, +5.6 mIoU, +4.0 METEOR, +2.5 AP50 vs. COCONut-PanCap training).
- Finetuning baseline grounding models on PanoCaps improves their gPQ by 15–25 points (e.g., from 19.7 to 44.5 gPQ, and CAPTURE improving alongside Recall rising from 23.0 to 67.1).
- Baseline methods (without PanoCaps finetuning) score as low as gPQ 22.7 and 26.1; PANORAMA-4B reaches the best gPQ (45.6 vs. 44.5 for the next best) while a SAMTok-based model scores marginally higher on text-only CAPTURE in some settings (up to 70.6 vs. 68.0).
- Reported measurement variability: standard deviations of 0.6 gPQ, 1.0 AP50, and 0.1 mean RefCOCO cIoU across seeds.
Why it matters / caveats: By decoupling referent understanding (VLM) from mask boundary prediction (pretrained segmenter) via a selection mechanism rather than direct [SEG]-token mask decoding, PANORAMA achieves state-of-the-art panoptic grounded captioning without a separately trained mask tokenizer/decoder, and PanoCaps offers a cleaner benchmark than prior sparse (GranD-f) or noisy (COCONut-PanCap) alternatives; the benchmark itself is modest in scale (3.5K images) compared to typical web-scale VLM training data.
Flattening Every Memory Peak in Long-Context Mixture-of-Experts Training →
Training huge 'mixture-of-experts' AI models, which are built from many specialized sub-networks, on very long texts fails whenever any single step runs out of graphics-card memory. The authors cap the memory of four separate trouble spots by reorganizing how computation and data move, without changing results. Combined, this allowed training on far longer texts than a tuned standard setup, at up to roughly ten times the speed.
Technical breakdown
Problem: Training Mixture-of-Experts (MoE) models at long context or large batch size fails whenever any single component's peak memory allocation exceeds device capacity, but standard parallelism plans leave four components—expert dispatch, vocabulary projection, gradient-checkpoint boundaries, and optimizer state—individually unbounded, so lowering one bottleneck merely exposes the next.
Method: The paper introduces four bounded-streaming operators, each replacing an existing component's schedule while keeping loss/gradients exact (no low-rank adapters, quantization, or approximate routing/attention): (1) PipelinedLLEP extends least-loaded expert parallelism by splitting dispatch into strided token chunks with a fixed per-rank token budget c, wrapping each chunk's expert matmul in a nested reentrant gradient checkpoint so buffers scale with the chunk cap rather than routing skew; (2) Ring-DTP performs the vocabulary projection by circulating activations or weight shards around a ring across P ranks, folding each logit block into an online log-sum-exp (softmax) so the full tokens×vocabulary logit tensor is never materialized, while allowing each rank to keep a distinct data-parallel batch; (3) Selective Checkpoint Offload (SCO) offloads a host-memory-budgeted subset of the long-lived per-layer checkpoint input tensors to CPU RAM, prefetching them back one layer before recomputation; (4) OffloadStreamAdamW turns the serial CPU-side AdamW update of optimizer offload into a pipelined bucket-streaming scheme that overlaps host-to-GPU transfer with on-GPU compute. All four are composed within the Mixture-of-Parallelisms (MoP) rank layout.
Key results:
- PipelinedLLEP cuts the MoE expert-dispatch peak by up to 59.3% vs. LLEP (56.9–59.3% in isolated benchmark at 65K tokens/rank, H=7168, top-8, 128 experts) at 1.01–1.10× LLEP's speed; strided vs. contiguous chunking alone gives 1.03–1.35× speedup and saves up to 1.37 GiB peak memory; at 65K-token batch, consecutive chunking causes a 6.0× routing peak vs. mean, strided chunking keeps it under 2.4×.
- Ring-DTP removes 86.6% of the vocabulary-projection peak memory for under 5% additional time.
- SCO lowers device peak monotonically with host budget, costs under 2% throughput, and raises the largest batch that completes without OOM by 17.7%.
- OffloadStreamAdamW runs the offloaded optimizer step 2.05× faster than standard CPU AdamW.
- Composed end-to-end (via MoP) on 120B, 241B, and 667B-parameter MoE models (7B/14B/... active params respectively, V=200,000, top-8 routing) across 16/32/64 H200 GPUs: the composed stack trains at 1,000,000-token context, which is 8–32× the reach of a tuned FSDP2-best baseline, and delivers up to 10.4× the baseline's throughput (7.6× at 128K on the 120B model, 10.4× at 64K on the 667B model) and up to 12× its largest global batch; at 241B, FSDP2-best stops at 32K context (4× below the composed stack's shortest configuration), and at 667B scale the composed stack delivers 2.2× the baseline's rate.
Why it matters / caveats: By bounding all four previously-unbounded memory peaks simultaneously (rather than optimizing one at a time), the method enables long-context (up to 1M tokens) MoE training that would otherwise OOM under standard FSDP2/expert-parallel setups, with exact (non-approximate) gradients, making million-token-context MoE pretraining practically feasible on fixed GPU budgets; the reported gains are measured in matched component/isolated benchmarks and specific model configurations, so absolute speedups may vary with vocabulary size, routing imbalance, and hardware.
The Other Half of the Memory Wall: Serving 35B MoEs from SSD with Trained Routing Prediction →
Mixture-of-experts AI models use only some of their parts for each word, yet all their stored numbers must still fit in memory, too much for ordinary computers. Edge0 reads parts from disk as needed, with a small predictor guessing one step ahead which parts will be needed, plus an add-on that restores lost quality. It runs a large model on one consumer machine with little memory, near the original's quality.
Technical breakdown
Problem: Serving a 35B-parameter Mixture-of-Experts (MoE) model on a single consumer machine is bounded by weight memory (19.5 GB at 4-bit), and naive SSD offloading cannot hide disk latency because each layer's expert routing depends on the previous layer's just-computed output, leaving no time to prefetch.
Method: Edge0 streams int4-quantized expert weights from SSD via mmap into a bounded pool (OS page cache, LRU, staged fixed-slot double buffer), and adds a "prerouter": a small per-layer head that predicts layer N+1's routing one token ahead from layer N's state, so the predicted set is consumed directly as the routing (no fallback loads, no dropped tokens) and SSD reads overlap the forward pass. To recover quality lost to int4 quantization and routing replacement, an unmerged, parallel recovery LoRA (y = W_int4(x) + (α/r)BA·x) is distilled from the fp16 teacher under the student's routing path and served unmerged (merging and requantizing would erase most of its effect).
Key results:
- On a single 24 GB machine, Edge0 serves the 35B MoE at ~20 tok/s with peak active memory of 2.9 GiB against a 19.5 GB checkpoint (fully-resident weights would need 18.2 GiB and only reach 3.9 tok/s — Edge0 is ~5x faster).
- The prerouter gives +80%, +82%, and +84% decode throughput gains over pure on-demand streaming at K=2, K=4, K=8 experts (e.g., K=8: 1.8 → 3.3 tok/s).
- Mean quality gap vs. fp16 teacher across five OpenCompass benchmarks (AIME 2026, HumanEval, GPQA-Diamond, MMLU-Pro, IFBench): 3.9 points for the 35B tier (79.2 vs 83.2 average) and 2.8 points for the 8B tier (69.9 vs 72.7 average).
- Adjacent decode tokens agree on only about a quarter of a layer's expert set in traces, so most prefetched experts are single-use; per-load cost fits 1.17 ms + 1.33 ms × cold-fraction.
- An 8B MLA+MoE hybrid tier runs on the same framework and is released alongside the 35B tier with checkpoints and adapters open-sourced.
Why it matters / caveats: The work targets a genuinely under-addressed half of the "memory wall" — static weight storage rather than dynamic KV cache — enabling large MoE inference on ordinary desktops/laptops without a datacenter; the approach still carries a measurable (a few points) quality cost from quantization plus routing replacement, and gains depend on cold-page residency being unreclaimable (a page-cache/memory tradeoff acknowledged by the authors, with some low-hanging optimizations left unexplored).
CERA-MoA: Co-Evolving Routing Mechanisms with Continually Learning LLM Agents →
Systems of multiple AI agents usually decide which agent answers what separately from how each agent is trained, so neither adapts to the other. CERA-MoA trains them together: a router cheaply estimates which agents are familiar with a question, picks the smallest suitable group, and sends training examples to help agents specialize. It outperformed earlier routing and training approaches while cutting computing cost.
Technical breakdown
Problem: Existing Mixture-of-Agents (MoA) systems treat query routing and agent fine-tuning as separate, decoupled processes, so routing cannot adapt to agents' evolving capabilities during post-training and cannot proactively drive agents toward complementary specialization.
Method: CERA-MoA is an iterative closed-loop reinforcement learning framework M = {D_ψ, {A_θi}, S} where a parameterized router D_ψ, a population of continually-trained agent policies, and a voting-based aggregator S co-evolve. A "predictive familiarity estimator" extracts mid-layer hidden states of an LLM encoder to compute a distance-based familiarity score per agent (trained by pulling a trainable predictor head toward a fixed target head, avoiding full-rollout evaluation overhead), and a "cumulative-threshold adaptive routing" mechanism activates the smallest score-ranked subset of agents whose cumulative familiarity exceeds a threshold τ, routing training queries to agents to induce specialization; agent policies are updated via DAPO-style RL with group-normalized rewards and GSPO importance sampling, using an intra-agent normalized advantage.
Key results:
- On in-distribution tasks (GSM8k, MATH, DAPO-MATH, MBPP, Eurus, TACO, MAGPIE, RLVR-IF, BBH) with Qwen3-4B, CERA-MoA reaches 63.2 average vs. 61.0 for the strongest baseline AT-GRPO and 49.6 for the unmodified base model.
- On Llama-3.2-3B-Instruct, CERA-MoA achieves 47.9 average vs. 43.3 (RouteMoA) and 33.6 (base); on Phi-4-mini-Instruct, 55.6 average vs. 54.1 (AT-GRPO) and 43.9 (base).
- Out-of-distribution results (Table 2): CERA-MoA scores IFEval 83.4, HumanEval 77.3, AGIEval 71.1, ARC-c 92.7, LogicBench 62.4, OlympiadBench 44.1, Avg. 71.8 — versus ICL-Router (Avg. 54.4) and LinUCB (Avg. 52.0).
- Ablation removing adaptive threshold routing (fixed top-k) retains comparable accuracy but "severely inflates" token expenditure; the adaptive mechanism cuts computational overhead by approximately 45% while retaining comparable performance; routing overhead itself is under 1% of native inference cost.
- Ablations show direct reward regression and reward-driven classification for the familiarity estimator perform notably worse than the proposed distance-based approach (Table 3), and a final-layer hidden-state variant underperforms the mid-layer variant (Table 10).
Why it matters / caveats: The framework offers a mechanism for multi-agent systems to jointly optimize "who answers what" and "who gets trained on what," inducing emergent specialization without manual role assignment; however, evaluation is limited to a set of relatively small base models (3B–4B scale) and specific benchmark suites, and the analysis of specialization (t-SNE visualizations) is qualitative/exploratory.
Fathom: Per-Query Read Depth for Sparse Decoding over Offloaded KV Caches →
When AI assistants handle very long sessions, the memory of past text is stored off the graphics card, and scanning it to find what matters slows each step. Fathom lets each query decide how much detail to read from each part of that stored memory. This made steps faster or more accurate than similar methods, though it offers no gain when everything fits on the graphics card.
Technical breakdown
Problem: When long-context agentic sessions push KV caches (and the index used to rank them for top-k sparse attention) into host memory rather than GPU memory, the per-token scan that ranks all n keys before fetching the top-k becomes the bandwidth-bound bottleneck of decoding, and existing per-token scan methods fix the number of bits read per key channel in advance regardless of how informative that channel is for a given query.
Method: Fathom stores the 4-bit K cache channel-major as bit planes, so that reading a prefix of t planes of a channel yields exactly that channel's t-bit uniform quantizer (no separate low-precision copy needed); each query then performs reverse water-filling over the variance-weighted importance (marginal score-error reduction, proportional to g_j·4^(−t_j)) of its channels to decide, per query and per channel, how many bit planes to read. It uses raw channels for models with QK-norm (e.g., Qwen3) and Karhunen–Loève transform (KLT) planes of the keys otherwise (Llama-3.1, Qwen2.5), and includes an optional per-layer budget calibrated once.
Key results:
- At 1M tokens on Qwen3-8B, a decode step is 1.67x faster in GPU time than 136-bit scans (Double Sparsity, Loki, SparQ r=32), and at 256k tokens 1.37x faster.
- Against SparQ's 68-bit read (r=16) at equal GPU time, Fathom (56-bit read) reads 18% fewer bytes with lower attention error on six of seven model/context settings, and is reported as 1.1–5.3x more accurate.
- Equal-error byte savings of 1.8–2.9x versus Double Sparsity's 136-bit scan across 7 settings up to 128k tokens.
- On RULER-style tasks, every per-token scan (including Fathom) matches exact top-k decoding downstream.
- On real coding-agent sessions (100k tokens, k=2048), Fathom's step agreement with exact top-k is 0.67 vs. SparQ r=16's 0.49 and landmark scoring's 0.47; at k=512, Fathom reaches 0.60 step agreement at 92 bits, matching SparQ r=32's 0.60 at 136 bits.
- When the KV rows are in host memory but the index resides in GPU HBM, Fathom is not faster (all per-token scans land at 45–48 ms); when everything is HBM-resident, the scan kernel is 1.4x slower than a nibble scan (arithmetic-per-byte bound).
Why it matters / caveats: Fathom targets a specific but increasingly common deployment regime (offloaded KV caches for many concurrent long-context agent sessions) and shows real GPU-time speedups there; the authors explicitly note the method provides no benefit when the cache/index already fits in GPU memory, so its applicability is regime-specific.
Assessing nnU-Net Generalization across Brain Tumor Populations in BraTS-GoAT 2026 →
Brain tumor scans vary across patient groups, and AI tools trained on some groups may falter on others. The authors trained a standard, widely used segmentation model, which outlines tumor regions in scans, on adult tumor cases and tested it on a mix that included unseen groups. Accuracy dropped noticeably outside the training data, and errors were most common for small, fragmented tumor areas.
Technical breakdown
Problem: The paper assesses how well a single, fixed nnU-Net segmentation protocol trained on adult glioma, meningioma, and metastasis MRI data generalizes to unseen tumor populations (sub-Saharan African glioma and pediatric brain tumors) in the BraTS-GoAT 2026 challenge, without population-specific adaptation.
Method: A conventional 3D nnU-Net (v2.6.2, 3d_fullres configuration, six-stage PlainConvUNet, 128×160×112 patches) was trained from scratch on 1,351 labeled cases (GLI, MEN, MET) using five-fold cross-validation, 1,000 epochs per fold, SGD with Nesterov momentum 0.99, region-based Dice + BCE loss, and standard nnU-Net augmentations; the final predictor averaged all five folds' probability maps and applied test-time mirroring across three spatial axes. The authors also trained an alternative five-fold ResidualEncoderUNet-L (160×192×160 patches) and conducted an out-of-fold (OOF) failure analysis using reference-mask morphology features (volume, connected components, largest-component fraction, ET/WT ratio) with rank-biserial effects and partial Spearman correlations.
Key results:
- On pooled official validation (451 cases spanning 5 populations), global DSC was 0.7805 (enhancing tumor, ET), 0.8288 (tumor core, TC), and 0.8854 (whole tumor, WT).
- Under matched fold-0 inference, mean regional Dice dropped from 0.9058 on source out-of-fold (OOF) cases to 0.8310 on pooled validation, a difference of −0.0747.
- Test-time mirroring gave small single-fold gains but no clear ensemble benefit; the alternative ResidualEncoderUNet-L reached 0.8282 mean Dice (comparable to but not better than the standard configuration).
- In labeled OOF predictions, failure cases (bottom-decile Dice) had substantially smaller reference ET volumes; after adjusting for ET and WT volume, lower Dice remained associated with more disconnected ET components and a smaller fraction of ET contained in the largest component.
- Training plus final OOF validation took 12.1–12.5 hours per fold (mean 12.3 h) on one NVIDIA A100 40GB GPU.
Why it matters / caveats: The ~0.075 DSC drop from source OOF to pooled validation (which includes unseen populations) quantifies a real generalization gap for a strong, self-configuring baseline (nnU-Net) without population-specific tuning; the study is limited by pooled (non-population-stratified) validation labels being hidden, meaning target-domain-specific performance cannot be isolated, and all failure analyses are explicitly described as exploratory due to overlapping training folds.