Science & Analytics

The Scientist

The Signal

ARC-AGI-3 just scored every frontier model below 1% on interactive reasoning tasks humans

If your agentic pipeline assumes the LLM can discover rules or form strategies in unfamiliar environments, that assumption now has a measured empirical ceiling.

In Play

  1. ARC-AGI-3 Resets the Reasoning Scoreboard to Near-Zero

    All frontier models score <1% on 135 interactive mini-games humans solve at 100%. Gemini Pro leads at 0.37%, GPT-5.4 at 0.26%, Grok-4.20 at 0%. Labs previously pushed ARC-AGI-2 from 3% to ~50% by training on it — AGI-3 is designed to resist that.

    Ask Clarity
  2. Three Database Fixes That Outperform Your Last Model Optimization

    Snowflake OR-joins silently force Cartesian products — rewriting as UNION ALL yields 100–200x speedups. Postgres ON CONFLICT DO UPDATE writes WAL even on no-ops, doubling Datadog's disk writes. Airbnb's COVID-era fix decoupled booking volume from lead-time composition for shock-resilient forecasting.

    Ask Clarity
  3. ML Infrastructure CVE Cluster Expands Beyond LiteLLM

    Six critical CVEs hit ML-specific tools this week: Langflow RCE exploited in 20 hours, MLflow arbitrary file write (CVSS 9.1), NVIDIA APEX pickle RCE in PyTorch <2.6 (CVSS 9.0), gRPC-Go auth bypass (CVSS 9.1), Harbor hard-coded creds (CVSS 9.4). Pattern: ML tools assume trusted environments and ship without input validation.

    Ask Clarity
  4. Recommendation Algorithms Ruled 'Defective Products' in Court

    California jury found Meta ($4.2M) and YouTube ($1.8M) negligent for addictive design — targeting algorithmic features, not content, bypassing Section 230. Legal theory extends to AI chatbots. Thousands of pending cases will use this as template. Your objective function is now discoverable evidence.

    Ask Clarity
  5. Model Commoditization Accelerates — Data Moat Is All That Remains

    Xiaomi anonymously shipped a 1T-param model (Hunter Alpha) that users mistook for DeepSeek v4. Frontier training costs falling to $50–100M. Open-source monetizable spread closing faster than capability spread. Apple's Gemini distillation deal validates teacher→domain-adapt→distill as the production edge deployment pattern.

    Ask Clarity

Deep Dives

ARC-AGI-3: Your Agentic Pipeline Has a Sub-1% Reasoning Floor

The Benchmark That Breaks Everything

ARC-AGI-3 launched with 135 interactive mini-games across ~1,000 levels, all verified as solvable by humans on first contact with no training. The results are devastating for anyone betting on agentic AI reasoning:

ModelLabARC-AGI-3 Score
Gemini ProGoogle0.37%
GPT-5.4 HighOpenAI0.26%
Opus 4.6Anthropic0.25%
Grok-4.20xAI0.00%
Humans100%

The spread between first and last place among frontier models is 0.37 percentage points — statistically indistinguishable noise. This isn't a tuning gap; it's a structural limitation of current approaches. Chain-of-thought, tree-of-thought, and tool use are all insufficient for adaptive real-time reasoning in novel environments.


Why This Benchmark Is Different

ARC-AGI-3 tests zero-instruction game-like scenarios requiring rule discovery, goal formation, and strategy planning entirely from interaction. This is fundamentally different from standard benchmarks that test pattern completion over trained distributions. The critical context: labs spent millions training specifically on ARC-AGI-2 and pushed scores from 3% to ~50% in under a year. ARC-AGI-3 is designed to resist this Goodhart's Law dynamic.

A model that scores 90% on MMLU but <1% on ARC-AGI-3 has fundamentally different reasoning capabilities than its leaderboard position suggests.

Five independent sources corroborate these scores. The uniform failure across architecturally different models from four separate labs confirms this is not a prompt engineering problem — it's a capability ceiling. 25 games are publicly available for human play, and spending an hour with them calibrates your intuition about what these models genuinely cannot do.


What This Means for Your Agents

If your agentic architecture assumes the LLM can discover rules in unfamiliar environments, plan strategies without explicit instructions, or generalize from zero-shot interaction, the empirical evidence is now clear: it fails at rates above 99%. The competitive advantage isn't picking the "smartest" model — all models reason at roughly the same (near-zero) level on novel tasks. The advantage is in the scaffold design: tool-orchestrated pattern matching, structured fallback logic, and human-in-the-loop gates at reasoning boundaries.

Separately, new research shows step-wise RL rewards improve multi-step agent task success by up to 40% compared to terminal-only rewards. This is directly actionable: most agent training frameworks default to terminal rewards, and adding intermediate signals is a reward-architecture change, not a model change. The 40% figure lacks full methodology disclosure, but aligns with classical reward shaping theory and is worth a controlled experiment.

What to do

  1. Run your production LLMs against ARC-AGI-3's 25 public games this sprint to establish a reasoning capability baseline

  2. Add interactive reasoning tasks (rule discovery, goal formation from interaction) to your agent eval pipeline by end of quarter

  3. Experiment with per-step RL rewards in your agent training pipelines — same agent, same tasks, dense vs. sparse rewards

  4. Monitor ARC-AGI-3 leaderboard progression over 6 months to calibrate model selection decisions

Three Database Fixes Worth More Than Your Last Model Optimization

Snowflake's Disjunctive Join Trap: 100–200x Hidden Tax

When you write ON a.id = b.id OR a.alt_id = b.alt_id in Snowflake, the hash join optimizer silently gives up. It can't partition on an OR condition, so it falls back to a Cartesian product — joining every row against every other row, then filtering. The fix: rewrite as two separate equi-joins with UNION ALL for 100–200x speedups.

The magnitude is directionally believable (Cartesian-to-hash-join is exactly that kind of asymptotic improvement), though actual gains depend on table sizes and join selectivity. This should be an automated lint rule in your SQL CI pipeline. Every Snowflake query in your feature engineering and training data pipelines with OR in a JOIN clause is a potential order-of-magnitude win.


Postgres Upsert: The No-Op Write Amplification Bug

Datadog discovered that ON CONFLICT DO UPDATE in Postgres always acquires a row lock and writes to WAL, even when the incoming data is identical to the existing row. At the scale of millions of ephemeral hosts, this doubled disk writes and quadrupled WAL syncs. The fix: add a WHERE clause comparing old vs. new values to skip no-op updates.

This is relevant anywhere you're doing high-frequency upserts with mostly unchanged data — feature freshness tracking, model status heartbeats, entity metadata refreshes. The write amplification is invisible unless you're monitoring WAL metrics specifically.


Airbnb's Forecasting Decomposition: A Distribution Shift Playbook

In March 2020, Airbnb's demand models broke across three simultaneous failure modes: massive booking volume swings, unpredictable cancellation spikes, and the collapse of the normal booking-to-travel-date relationship. A monolithic model couldn't isolate which signal was shifting.

The fix was architectural: decouple forecasting into two independent models — one for gross booking metrics on the booking-date axis, one for lead-time composition (what proportion of bookings convert to trips on future dates). Each component can be independently recalibrated when one signal regime-shifts while the other holds steady.

Separate the signals that have different failure modes so you don't have to retrain everything when one distribution shifts.

This is the same intuition behind mixture-of-experts and modular forecasting. No quantitative recovery metrics are published, but the architectural principle is sound and generalizable to any multi-step funnel model where upstream volume and downstream conversion have independent drift dynamics.

What to do

  1. Grep all Snowflake SQL for OR in JOIN clauses today — every instance is a potential 100x+ speedup

  2. Check Postgres-backed feature stores for high-frequency upsert patterns where most rows don't change; add WHERE clause to skip no-ops

  3. Refactor multi-step forecasting models to decompose volume from composition signals, following Airbnb's pattern

  4. Backtest forecasting decomposition by simulating regime changes on historical data to validate the architecture before the next shock

Six New Critical CVEs Hit ML-Specific Infrastructure — The Attack Surface Is Expanding

This Week's ML Vulnerability Cluster

The SANS @RISK bulletin revealed six critical CVEs targeting core ML infrastructure tools — tools many teams run in production today. The dominant pattern: ML platforms assume a trusted environment. They're built for researcher notebooks and deployed into multi-tenant production without security hardening.

ToolCVECVSSVulnerabilityStatus
LangflowCVE-2026-33017+9.1–9.9Unauth RCE, file write, shell injectionExploited in 20 hrs
MLflowCVE-2025-150319.1Arbitrary file write via tar.gz Zip SlipHigh risk in multi-tenant
NVIDIA APEXCVE-2025-332449.0Pickle deserialization RCE (PyTorch <2.6)Patch: upgrade PyTorch
gRPC-GoCVE-2026-331869.1Auth bypass via HTTP/2 :path header22,844 GitHub stars exposed
HarborCVE-2026-44049.4Hard-coded credentialsUpgrade from ≤2.15.0
Mesop (Google)CVE-2026-33054/579.8–10.0Path traversal + code injection6,521 GitHub stars

The Pickle Problem — Three RCEs in One Week

Three distinct pickle deserialization RCEs appeared in a single weekly bulletin: NVIDIA APEX, OmniGen2-RL, and MLflow's tar.gz variant. Pickle is essentially eval() with extra steps, and it remains wired into the default serialization path of most ML frameworks. The migration path exists — safetensors for model weights, protobuf for structured data — but adoption remains slow.

Infrastructure Components You Probably Run

The gRPC-Go vulnerability is particularly insidious. With 22,844 GitHub stars, it's a transitive dependency in countless Go-based serving systems. The authorization bypass via HTTP/2 :path pseudo-header manipulation means your model endpoint's access control may be silently ineffective. This bug doesn't show up in application-layer testing because it operates at the protocol layer.

Meanwhile, AWS Bedrock AgentCore's "complete isolation" sandbox was demonstrated to allow bidirectional C2 via DNS tunneling — a full interactive reverse shell from a supposedly air-gapped sandbox. AWS's response: they'll update the documentation, not fix the bug. The researcher received a $100 gift card.

If your ML platform doesn't get the same security hardening as your databases, it's a matter of when, not if.

What to do

  1. Run 'python -c "import torch; print(torch.__version__)"' across all training environments — anything below 2.6 is vulnerable via APEX; upgrade and remove standalone APEX (replaced by torch.amp)

  2. Pin and verify gRPC-Go version ≥1.79.3 across all model serving infrastructure by checking go.sum files

  3. Implement model artifact scanning in MLflow — reject tar.gz artifacts with path traversal patterns and sandbox extraction for pyfunc models

  4. If using AWS Bedrock AgentCore sandbox, implement DNS egress filtering as compensating control — do not rely on AWS's isolation claim

Courts Validated 'Defective Product Design' Against Recommendation Algorithms — Your Objective Function Is Evidence

The Legal Theory That Bypasses Section 230

A California jury found Meta ($4.2M) and YouTube ($1.8M) liable for negligence in the first bellwether social media addiction case. The critical innovation: plaintiffs didn't argue about harmful content. They argued platform design features — infinite scroll, algorithmic recommendations, engagement-maximizing mechanics — constituted negligence. The jury agreed, and Section 230 didn't save them because the theory targets the algorithm, not the content.

Legal TheoryTargetSection 230 DefenseStatus
Content liabilityUser-generated contentProtectedTraditional approach
Product design liabilityAlgorithmic features (recs, scroll)Not protectedJury-validated
Child safety failurePlatform safety systemsNot invoked$375M NM verdict

One day earlier, a New Mexico jury hit Meta with $375M for failing to protect minors from predators. Both companies will appeal, but the legal attack vector is validated: target the algorithm, not the content. Thousands of similar cases are queued, including federal cases from school districts naming Meta, YouTube, TikTok, and Snap. The theory is being explicitly extended to AI chatbot makers including OpenAI and Google.


What This Means for Your Models

Five independent sources confirm the same analysis: your optimization objective is now legally discoverable evidence. If your recommendation system maximizes watch time, and your A/B test logs show you chose the variant that increased session duration for adolescents, that's exhibit A in litigation. The legal standard is "negligence," not "intent" — you don't have to have intended harm for liability to attach.

Document your safety trade-offs like they'll be read by a jury, because they might be.

Both verdicts will be appealed, and a single bellwether doesn't set binding precedent. But it signals how juries perceive algorithmic engagement systems — and creates the template for thousands of upcoming cases.

What to do

  1. Audit your recommendation system's objective function for harm-adjacent proxy metrics (session duration, scroll depth, notification re-engagement) and document explicit safety constraints this quarter

  2. Add user wellbeing metrics to your A/B testing framework alongside engagement KPIs

  3. If your platform serves minors, implement configurable engagement caps per user cohort as a model feature

The bottom line

ARC-AGI-3 scored every frontier model below 1% on reasoning tasks humans solve at 100%, confirming that agentic pipelines relying on novel LLM reasoning have a near-zero capability floor — while a Snowflake OR-join audit and Postgres upsert WHERE clause will deliver more immediate compute savings than your last model optimization, six new critical CVEs prove ML infrastructure is now a first-class attack surface requiring database-grade hardening, and a California jury just ruled that recommendation algorithms can be legally 'defective products' whose optimization objectives are courtroom evidence.