The AI industry is stratifying into distinct tiers, each playing by different rules. At the top, companies with massive compute and regulatory tailwinds are flooding the market with variants and momentum. Google has released three Gemini Flash iterations in six weeks, a pace that signals the abandonment of coherent product strategy in favor of release frequency. The pause on Pro model updates suggests internal acknowledgment that performance gains matter less than the appearance of constant progress. Simultaneously, the Trump administration filed a brief backing OpenAI's fair-use argument in the New York Times copyright case, explicitly framing AI development as a competitive necessity and intellectual property restrictions as a threat to American dominance. This removes a meaningful constraint on training data sourcing and shifts competitive advantage entirely toward companies that can already absorb legal risk and data at scale. Wonderful's valuation doubled to five billion dollars in under six months following a five hundred fifty million dollar Series C, evidence that venture capital believes the regulatory path is clear and the market is real.
Below this layer, the actual work of building AI products has fragmented into dozens of venture-backed startups solving problems that shouldn't exist if foundation models were stable. HiddenLayer raised one hundred million dollars to monitor AI agents and their tools. Palo Alto Networks paid five hundred million for Console, leaving Serval as the de facto leader in AI IT service automation. These are not innovations in capability but solutions to deployment friction. The labs themselves have sorted into separate competitive arenas with minimal overlap. OpenAI is pushing ChatGPT Work into operational efficiency, converting days of marketing work into hours. Microsoft is following through Copilot in construction, quantifying safety and productivity gains on job sites. AWS is consolidating infrastructure through the DuckDuckLabs acquisition and custom silicon for AI workloads. GitHub is optimizing for cost efficiency in code generation, addressing the tension between output length and token spend. The pattern is clear: companies with direct customer relationships and billing infrastructure are racing to embed AI into workflows where savings are immediate and defensible.
Measurement and control have become the frontier. Research papers cluster around three interconnected trends: frameworks for comparing heterogeneous systems under different conditions, structured reasoning that preserves interpretability through explicit decomposition, and intervention-driven evaluation that treats model modifications as targeted changes to training signals rather than weight adjustments. Across these clusters, the work moves beyond parameter count toward schemes that surface real-world constraints and reasoning paths that remain reconstructible under pressure. On coding tasks, the frontier has plateaued. AnthropicFable 5 holds position one at 64.5% on SWE-rebench with tight confidence intervals, while Grok 4.5 sits at 63.8% and Opus 5 at 63.4%. The spread between first and fifth place remains 2.2 percentage points, suggesting either the measurement has reached precision limits or performance has stabilized. Meanwhile, GitHub's trending repositories reveal that the market has shifted from building better models to building better ways to use the models that exist. Infrastructure for agent coordination, token overhead reduction, and visibility into agent behavior are gaining real adoption. Protocol Buffers trending at 71k stars confirms the rule: data interchange infrastructure becomes more valuable as systems grow more complex.
Grant Calloway
Speech brain-computer interfaces (speech BCIs) translate neural activity into language, offering a path towards restoring speech for people with paralysis and, more broadly, enabling new forms of natural human-computer interaction. Despite this promise, the field lacks a common measure of progress because systems use different datasets, recording methods, types of speech, and vocabularies, so their reported scores are rarely comparable. Underlying this measurement problem are two unresolved questions: (i) what distribution of words should a speech BCI enable a user to communicate, and (ii) how much information from this distribution can a system convey. We address both by deriving open-vocabulary mutual information (OVMI), an information-theoretic quantity that measures the information conveyed by a decoder relative to a reference distribution over the words a user may wish to communicate. This allows capabilities measured under different conditions, such as distinct vocabularies, to be evaluated on a common communication scale. We show that ordinarily reported accuracy, word error rate (WER), and other metrics computed only over the words a system supports can overstate how much of a user's intended speech the system can communicate. We then use OVMI to compare existing systems, expose trade-offs between how much of the user's language a system supports and how accurately it decodes those words, show that these comparisons depend on what the user is expected to communicate, and demonstrate that selecting a vocabulary to maximise OVMI yields up to 16.3% relative improvement in accuracy across three speech domains. OVMI therefore provides the speech BCI community with a principled way to compare heterogeneous systems, improve vocabulary design, and measure progress in the field.
Recent web agents use world models for test-time action selection by sampling candidate actions, predicting the resulting web states, and ranking them with a ranker model or a Process Reward Model (PRM). These world models are typically trained via supervised next-state prediction to generate fixed representations like HTML or AXTree snapshots. However, this objective is misaligned with the downstream ranker, which relies on predicted states being discriminative across candidates to accurately score them. To address this, we introduce predicted-state matching, a training objective where the predicted representation must distinguish the true resulting state from those reached by alternative actions. We train these models using a branching web-agent dataset derived from WebArena Go-Browse trajectories, where every decision point contains multiple alternative actions and their resulting states. Experiments on our held-out predicted-state matching benchmark show that our approach outperforms world models trained with supervised next-state prediction. We further show that our approach improves PRM-style action ranking on WebPRMBench compared with action-only PRMs and PRMs augmented with supervised-next-state world models. Finally, on WebArena-Lite, using our world model for test-time action selection improves end-to-end task success. Our project page is available at: https://dhruvpendharkar.github.io/dwm/.
We introduce the Graph Machine (GM), an architecture that maintains an $O(n)$-sized state and accesses it through sparse, dynamic routing. Unlike methods with fixed-size states or sparse but static routing, GM preserves $O(n)$ complexity in its sparse layers without restricting the potentially accessible state size to $O(1)$. Instead, GM uses edges - pointer-like objects updated differentiably by a referral mechanism resembling pointer chasing. We replace 75% of the dense Transformer layers in Qwen3-0.6B with GM sparse layers and pretrain from scratch on 15.7B tokens. With only 2 of 4,096 tokens retrieved per KV head in each sparse layer, loss degrades only slightly; with 4, the best model marginally improves loss.
Ordinary differential equations (ODEs) underlie models in science and engineering, and many applications need derivatives of their solutions with respect to parameters. Ensembles of independent trajectories suit graphics processing units (GPUs), but current GPU software forces a trade-off: the fastest ensemble solvers cannot be differentiated in reverse mode at the speed they solve, and the solvers built for differentiation solve more slowly. No single tool has yet offered a reverse-mode gradient at the speed of a fused-kernel solve. We present GRADSOLVE, an open-source JAX library for solving and reverse-mode differentiating low-dimensional ODE ensembles on NVIDIA GPUs. It records the steps an adaptive solver accepts and differentiates a fixed-step replay of them; the returned gradient is the exact discrete adjoint of those steps, the same derivative Diffrax returns by default, obtained more cheaply from a fixed-length chain than from an adaptive loop. It targets ensembles differentiated many times against one recorded mesh, keeps Diffrax as a fallback, and supports explicit and Rosenbrock integrators. Used as a solver, GRADSOLVE's forward-only kernel ran 2.8x faster than DiffEqGPU.jl; used for gradients, once a record exists, it computed them 5.6-14.1x faster than Diffrax's checkpointed adjoint at matched forward-state accuracy across three GPU generations, the advantage narrowing on large ensembles and, on stiff systems, down to parity at tight accuracy. GRADSOLVE is released at https://github.com/ECLIPSE-AI4Science/gradsolve.
Autonomous robots powered by deep learning face a fundamental auditability challenge: when incidents occur, investigators cannot reconstruct why the system made specific decisions. This paper presents TRACE (Transparent Reasoning Architecture for Credible Execution), a decision framework that ensures every autonomous action can be traced back to sensor evidence through documented causal chains. The framework organizes decision-making into four auditable layers: Semantic Perception for evidence-grounded entity recognition, Belief Reasoning for probabilistic state estimation with causal graphs, Action Synthesis for constraint-aware planning with counterfactual documentation, and Execution Verification for compliance monitoring. TRACE is model-agnostic yet designed to integrate learning-based perception modules (CNNs, transformers) while preserving decision-level auditability. We evaluate the framework using three objective metrics: Evidence Traceability (sensor-to-decision linkage), Decision Reconstructability (post-hoc analysis capability), and Temporal Continuity (audit trail completeness). Experimental evaluation on warehouse robot navigation demonstrates that TRACE achieves 98.6% evidence traceability, 99.0% temporal continuity, and 98.1% decision reconstructability across 500 simulated decision cycles. Post-hoc methods like LIME provide feature attributions but lack the artifact structure needed for decision-level reconstruction. The framework addresses EU AI Act requirements for high-risk system transparency and contributes to Explainable AI for safety-critical autonomous systems.
Harnessing naturally occurring feedback from user interactions offers a promising learning signal for Large Language Models (LLMs). However, recent studies suggest this feedback is inherently noisy and difficult to leverage effectively. We challenge this conception by demonstrating that user feedback is a highly actionable signal for improvement, and that its perceived ineffectiveness stems from a systematic bias in current evaluation paradigms. To isolate the usefulness of feedback, we construct synthetic data with a definitive ground truth, alongside naturalistic data to validate that our findings hold in real-world scenarios. By comparing model revisions generated with and without access to feedback across both settings, we show that feedback-informed revisions resolve targeted issues at significantly higher rates than baseline revisions. Finally, we expose the root of the evaluation bias: when a model successfully fixes an issue exclusively due to feedback, LLM judges frequently fail to identify the genuinely corrected response, systematically preferring inferior baseline outputs instead.
Composite score across coding, math, and reasoning
| # | Model | Score | tok/s | $/1M |
|---|---|---|---|---|
| 1 | Claude Fable 5.1 | 65.7 | 69 | $20.00 |
| 2 | Claude Opus 5 | 63.1 | 48 | $10.00 |
| 3 | Claude Fable 5 | 62.1 | 59 | $20.00 |
| 4 | GPT-5.6 Sol | 60.9 | 76 | $8.00 |
| 5 | Grok 4.6 | 60.9 | 56 | $3.00 |
Agentic coding on real-world software engineering tasks
| # | Model | Score |
|---|---|---|
| 1 | AnthropicFable 5 [high]Model | 64.5%± 1.41% |
| 2 | GrokGrok 4.5 [high]Model | 63.8%± 0.60% |
| 3 | AnthropicOpus 5 [high]Model | 63.4%± 1.35% |
| 4 | Z.aiGLM-5.2 [high]Model | 62.9%± 1.19% |
| 5 | OpenAIGPT-5.6 Sol [medium]Model | 62.3%± 1.83% |
A modern formatting library
TimesFM (Time Series Foundation Model) is a pretrained time-series foundation model developed by Google Research for time-series forecasting.
Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote.
VoiceStudio is the open-source, fully-local ElevenLabs alternative — voice cloning, voice design, video dubbing, dictation, transcription & audiobook creation in 646 languages.
Chrome DevTools for coding agents
Minecraft-style voxel benchmark for comparing AI models (Arena + Sandbox)
A unified framework for easy reinforcement learning in Flow-Matching models
High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.
Free, self-hostable, AI-native design software for creating graphics, social posts, and more, with no paywalls or watermarks.
MLOps Tools For Managing & Orchestrating The Machine Learning LifeCycle