3RecursiveIntelligence.io

Looking for Ricursive (the AI chip design company)? You want ricursive.com|Looking for Recursive AI / Recursive Superintelligence (Richard Socher's startup)? You want recursive.com

The AI Abstract — Morning Edition

AI/MLLatest

Making the Future Evenly Distributed.

The best AI system tested for breast cancer treatment recommendations answered correctly less than 60% of the time — and that was the top score across seven architectures.

Every benchmark you use to evaluate a language model is probably lying to you. Not in the sense that the numbers are fabricated, but in the sense that they measure the wrong thing. A new paper on 🔬prediction robustness makes this concrete: state-of-the-art models look stable when you average their accuracy across a test set, but underneath that average, individual predictions flip unpredictably when you prepend meaningless text — invented pseudo-words with no semantic content — to the input. The model gets the same question right without the noise and wrong with it, or vice versa, in ways that don't cancel out systematically. They just vary. Aggregate accuracy stays flat because the flips go in both directions, and the errors wash out in the mean. That's not stability. That's noise with good optics. The implication for anyone using benchmarks to make deployment decisions: a model that holds its average score across ten thousand examples can still fail unpredictably on any single one. That's exactly the situation where aggregate metrics are useless. The researchers argue for per-example reliability scoring — checking not just whether the model gets a question right, but whether it gets it right consistently under trivial variation.

This connects to a harder version of the same problem in medical AI. Researchers tested seven LLM-based agentic systems against 72 real breast cancer treatment cases and 1,147 expert-derived rubrics, and the 🔬results should stop anyone considering unsupervised clinical deployment. The best-performing configuration — Claude Opus running in a multi-agent architecture — hit 59.4% accuracy. The failure modes weren't random: the systems hallucinated citations, expressed overconfidence on cases where they were wrong, and degraded in ways that weren't predictable from their benchmark scores. A 59% accuracy rate on treatment decisions isn't a promising baseline to iterate from. It's a signal that the current generation of agents, however capable at general reasoning, is not doing what medicine requires.

The field is also working through a more tractable version of the reliability problem in multi-agent systems. When you give a language model a context window, you're giving it a fixed amount of space to work with. In multi-agent pipelines, a significant portion of that space gets consumed by coordination overhead: instructions about roles, shared state from previous steps, tool outputs. The 🔬RCWT protocol measures exactly what happens when that overhead crowds out the actual evidence. The finding is that models degrade sharply when fewer than a few hundred tokens of real task content remain — and that this is a space problem, not a comprehension problem. The coordination text isn't confusing the model. It's just leaving no room for the thing the model needs to reason about. Think of it like a whiteboard that's been covered in administrative notices. The problem isn't that the notices are misleading. There's just nowhere left to work. This distinction matters for how you fix it: the solution isn't to simplify your instructions, it's to restructure which information arrives when.

Two other results this week advance the underlying model quality problem. The 🔬CurioSFT paper addresses a known failure mode in how reasoning models are trained. The standard pipeline fine-tunes a model on expert examples first, then applies reinforcement learning. The fine-tuning step tends to make the model overconfident and repetitive — it locks in patterns at the cost of the diversity needed for RL to work well. CurioSFT counters this by having the model generate its own alternative outputs during training, then distilling from those to preserve the spread of possible answers. The gains are 2.5 to 2.9 percentage points during fine-tuning and 5 points on average when RL follows. That last number is the more significant one: it means the fine-tuning stage is currently degrading the RL stage, and entropy preservation is a recoverable part of that loss.

Separately, the 🔬ADAS paper improves inference in a less common but increasingly relevant class of models: masked diffusion language models. Standard autoregressive models generate text one token at a time, left to right. Masked diffusion models generate all tokens simultaneously, which is faster but creates a coordination problem — early token commitments can box in later ones in ways that hurt quality. ADAS applies soft attention-based penalties during the reranking step to avoid locking in tokens that are likely to conflict with what comes next. No retraining required. The result is a 9 to 10 percentage point improvement on reasoning benchmarks. The "models" signal cluster, now at 105 mentions since May, reflects sustained field attention to exactly this layer of post-training and inference engineering.

For teams building agentic systems, two debugging papers deserve attention. The 🔬OAT framework learns what successful agent runs look like, then flags steps that deviate from that pattern as likely failures — without ever having seen a labeled failure. It runs 200 to 5,000 times faster than asking a model to evaluate its own trajectory, and improves failure detection by 20 to 27 F1 points. And for anyone deploying LLMs over databases: 🔬PCC-SQL enforces column-level access controls by blocking forbidden tokens during generation rather than filtering outputs afterward. Zero leakage on policy violations, 88.7% coverage retained. Post-hoc filtering relies on the model obeying rules it could ignore. Blocking at generation time means the rule can't be violated because the token can't be produced.

One result worth watching for anyone in finance or social science research: a team trained 4-billion-parameter models on 🔬chronologically filtered data with monthly checkpoints from 2013 through 2024. The problem they're solving is lookahead bias: when you use a model trained on data through 2024 to ask what an analyst would have predicted in 2017, the model has already seen what happened. Its answer is contaminated by the future. Monthly checkpoints let researchers ask a model frozen at any given point what it "knew" at that time. Prior approaches to this problem sacrificed too much performance to be practical. This release claims to close that gap while keeping the training pipeline open and reproducible.


🔬 The Illusion of Robustness: Read for the per-example instability evidence — this is the clearest argument yet for why aggregate benchmarks can certify models that will fail unpredictably in production.

🔬 Agentic Systems for Breast Cancer Treatment Recommendations: Read for the failure taxonomy — hallucination patterns, overconfidence signatures, and the gap between benchmark performance and clinical accuracy across seven architectures.

🔬 RCWT: Measuring Task-Budget Displacement: Read for the context allocation framework — the space-versus-semantics distinction will change how you structure multi-agent prompts.

🔬 Tracing Agentic Failure from the Flow of Success: Read for the unsupervised debugging method — relevant to any team running agents in production without step-level failure labels.

🔬 Scaling Point-in-Time Language Models: Read for the methodology if you work in finance or causal inference — this is the infrastructure needed to make backtesting with LLMs valid.

Links

  1. Entropy-Preserving Supervised Fine-Tuning via Adaptive Self-Distillation for Large Reasoning Models

    arxiv.org

    CurioSFT proposes entropy-preserving supervised fine-tuning for large reasoning models via adaptive self-distillation, addressing overconfidence and diversity collapse in standard SFT-then-RL pipelines. Demonstrates 2.5-2.9pt gains on mathematical reasoning tasks during SFT and 5.0pt average improvement when followed by RL, directly advancing post-training methodology for reasoning-focused model development.

  2. The Illusion of Robustness: Aggregate Accuracy Hides Prediction Flips under Task-Irrelevant Context

    arxiv.org

    Researchers show that while state-of-the-art LLMs appear robust to task-irrelevant context at aggregate accuracy levels, individual predictions flip unpredictably across models when exposed to even meaningless pseudo-words prepended to inputs. This work exposes a tail-risk vulnerability masked by standard benchmarking practices and argues for per-example reliability evaluation, with direct implications for production deployment safety and evaluation methodology in the field.

  3. Scaling Point-in-Time Language Models

    arxiv.org

    Researchers trained 4B-parameter decoder-only transformers on chronologically filtered tokens to eliminate lookahead bias in language models, releasing monthly checkpoints spanning 2013-2024 with training infrastructure and code. This addresses a critical methodological gap for valid backtesting and causal inference in finance and social sciences, enabling practitioners to build temporally sound models without the performance collapse of prior point-in-time approaches.

  4. RCWT: Measuring Task-Budget Displacement from Coordination Content in LLM Calls

    arxiv.org

    Researchers introduce RCWT, a controlled protocol measuring how coordination content (shared state, role instructions, tool outputs) in multi-agent LLM prompts displaces available tokens for task evidence under fixed context budgets. Finding: models degrade sharply when residual evidence falls below a few hundred tokens, but this is task-budget displacement rather than semantic interference—a distinction with implications for prompt-engineering and context-allocation strategy in production systems.

  5. PerfCodeBench: Benchmarking LLMs for System-Level High-Performance Code Optimization

    arxiv.org

    PerfCodeBench is a new executable benchmark that evaluates LLMs on high-performance code optimization tasks requiring hardware awareness, parallelism, and GPU operations—revealing significant gaps between model-generated and expert-optimized code. This addresses an underexplored but practically critical dimension of LLM capability: practitioners need models that produce not just correct but efficient systems software, making this benchmark valuable for tracking progress in a neglected evaluation dimension.

  6. Who Grades the Grader? Co-Evolving Evaluation Metrics and Skills for Self-Improving LLM Agents

    arxiv.org

    Researchers propose Double Ratchet, a framework that co-evolves evaluation metrics alongside agent skills by composing drawback detectors under evolutionary pressure, validated against anchored reference sets and held-out audits. This tackles a critical bottleneck in self-improving LLM agents—the absence of reliable automatic verifiers—demonstrating 88-110% retention of ground-truth-driven performance across code generation, SQL, and report generation tasks.

  7. Attention-Discounted Adaptive Sampler for Masked Diffusion Language Models

    arxiv.org

    Researchers propose ADAS, a training-free reranking algorithm that improves parallel token generation in masked diffusion language models by using soft attention penalties to avoid unsafe token-coupling commitments. This advances inference efficiency for models like LLaDA and Dream, showing 9-10 percentage point improvements on reasoning benchmarks with minimal runtime overhead—directly relevant to practitioners building fast inference systems.

  8. Agentic systems for breast cancer treatment recommendations

    arxiv.org

    Researchers benchmarked seven LLM-based agentic systems for breast cancer treatment recommendations against 72 real clinical cases and 1,147 expert-derived rubrics, finding that even the best configuration (Claude Opus with multi-agent architecture) achieved only 59.4% accuracy and remains unsafe for unsupervised clinical deployment. The work advances understanding of where tool use and agent autonomy help or hurt in medical decision support, and demonstrates systematic failure modes (hallucination, citation errors, overconfidence) critical for practitioners considering LLM deployment in healthcare.

  9. Tracing Agentic Failure from the Flow of Success

    arxiv.org

    Researchers propose OAT, an unsupervised failure attribution model using one-class learning and neural controlled differential equations to identify error steps in LLM-based agent trajectories by training only on successful runs. The work is 200-5000× faster than prompting-based baselines while achieving 20-27% F1 improvement, directly solving a critical debugging problem for production agentic systems without requiring expensive step-level failure annotations.

  10. Policy-Conditioned Constrained Decoding for Column-Level Access Control in Text-to-SQL

    arxiv.org

    Researchers introduce PCC-SQL, a constrained decoding method that enforces column-level access control policies in text-to-SQL systems by deterministically masking tokens during generation rather than stochastic post-hoc filtering. The work demonstrates 0% leakage on policy violations while maintaining 88.7% coverage, directly addressing a critical security gap in deploying LLM-based SQL generators in multi-tenant or data-sensitive environments.