Science & Analytics

The Scientist

The Signal

Alibaba banned Claude Code overnight just as two MIT-licensed frontier models dropped.

One of the releases is LongCat-2.0, a 1.6T MoE. The overnight ban proves vendor dependency is operational risk, not hypothetical — your API-first architecture is now a choice you're actively paying for, not a necessity.

In Play

  1. Self-Hosted Frontier: MIT Models + AMD Economics Close the Case

    LongCat-2.0 (MIT, 1.6T MoE, 48B active) and GLM-5.2 (MIT, 744B, 40B active, 1M context) give you self-hostable frontier models with unrestricted fine-tuning. AMD MI355X hit 2626 tok/s/node at >2x cheaper than Blackwell via sglang + MXFP4 — no custom kernels needed. Alibaba's Claude ban + Fable 5's 19-day outage prove the downside of not having this option.

    Ask Clarity
  2. TabFM: Zero-Shot Tabular Prediction vs. Your GBM Pipeline

    Google Research released TabFM — a foundation model for tabular data using row+column attention trained on hundreds of millions of synthetic datasets from structural causal models. Evaluated on 51 TabArena datasets, it promises to collapse feature-engineering→train→tune into a single in-context call. Critical blockers: non-commercial license, 10-class cap, and no published head-to-head against tuned GBMs.

    Ask Clarity
  3. Chinese Model Provenance: Compliance Landmine Forming

    Chinese-origin models (Qwen, DeepSeek, LongCat-2.0, GLM-5.2) now diffuse globally as fast as US frontier models, with an 11x fork-rate surge post-export controls. They're appearing undisclosed in US patents while Chinese science citations rose from 1% to 26% of patent references (2000→2025). If your model registry lacks provenance tracking, you have unmanaged IP/regulatory exposure.

    Ask Clarity
  4. Coding Agent Cost-Quality Frontier Quantified

    Snorkel's Senior SWE-Bench reveals GPT-5.5 leads basic solve rate (55.0%) at 36.3K tokens/89 steps, while Claude Opus 4.8 wins 'tasteful' code quality (24.0%) but burns 117.1K tokens/131 steps — a 3.2x token premium for style over function. Meanwhile TUA-Bench shows best frontier agents hit only 65.8% success on real terminal tasks.

    Ask Clarity
  5. Ground-Truth Erosion: The Silent Quality Collapse

    When AI output clusters around a 'competent floor' (~70%), eval metrics saturate and lose discriminative power in the top quality band. When senior reviewers rotate out, the model's floor becomes the de facto ground truth — textbook feedback-loop degradation. Arena's 3.3x ARR growth ($30M→$100M in 8 months) confirms eval is now a market-wide bottleneck.

    Ask Clarity

Deep Dives

MIT Frontier Models + AMD at Half-Price: Self-Hosting Just Became the Default

The Convergence That Changes Your Architecture

Meituan put out LongCat-2.0 this week, and the self-hosting calculus moved from interesting hedge to economically obvious default. It is a 1.6-trillion-parameter sparse MoE, 48B active per token, under MIT license, and it edges GPT-5.5 on SWE-bench Pro at 59.5 to 58.6. Z.ai shipped GLM-5.2 the same week: a 744B MoE, 40B active, a real 1M-token context window, 28.5T training tokens, MIT weights. And Wafer showed AMD MI355X serving at 2626 tok/s/node, roughly 2x cheaper than NVIDIA Blackwell, using framework configuration rather than custom kernels.

The forcing function landed the same week. Alibaba banned Claude Code overnight, ordering all Claude models off work machines. Anthropic's Fable 5 was down 19 days on export-control issues. These stopped being hypotheticals.


The Practical Recipe

The AMD result is worth trusting because it is configuration, not engineering:

  • MXFP4 quantization via Quark
  • sglang as serving framework, which beat vLLM and ATOM in their testing
  • FP8 KV cache for memory efficiency
  • ROCm speculative-decoding fixes
  • MoE kernel tuning for fp4 shapes

To benchmark before you touch hardware, Vercel's AI Gateway now exposes GLM 5.2 Fast as an endpoint.

The MoE Memory Trap

Capacity planning is where the sparse MoE numbers mislead. LongCat-2.0 activates 48B params per token, so inference compute tracks a 50B model. The thing that number doesn't tell you is that you still have to hold all 1.6T weights in memory. Your tok/s bill reads mid-size and your VRAM and storage bill reads enormous. Size the full parameter set before committing.


Cross-Source Validation

The SWE-bench Pro gap of 59.5 to 58.6 is sub-one-point and vendor self-reported, with no confidence intervals. That is a leaderboard result, not a production verdict. Do not put 'beats GPT-5.5' in a design doc without re-running on your own harness. The delta is noise. What is not noise is that an MIT-licensed model now sits in the same performance band as a proprietary frontier model, and that is what makes self-hosting a real option.

Local models now answer 71.3% of ChatGPT-style queries correctly, up from 23.2% in 2023 per Stanford, and Qwen 3.6 27B runs at 32 tok/s on an M5 MacBook. Frontier capability for the hard tasks via self-hosted MoE, viable local inference for the routine majority.

The default architecture of piping everything to a frontier cloud API is now leaving 50-60% of cost on the table, plus geopolitical risk you don't control.

What to do

  1. Run Wafer's AMD recipe (MXFP4 + sglang + FP8 KV cache) on your serving stack or benchmark via Vercel AI Gateway's GLM 5.2 Fast endpoint this week

  2. Pull LongCat-2.0 weights from Hugging Face and benchmark against your internal code-gen eval harness by end of sprint

  3. Implement a provider-abstraction layer with evaluated fallback model by end of quarter

  4. Size LongCat-2.0's full 1.6T parameter footprint into GPU memory planning before any deployment commitment

TabFM: Zero-Shot Tabular Prediction — Your XGBoost Pipeline's First Real Challenger

What Landed

Google Research released TabFM, a foundation model for tabular data that wants to do for structured prediction what GPT did for text: handle new datasets zero-shot, with no per-dataset training. The architecture uses alternating row and column attention to capture feature interactions natively, plus row compression and an ICL (in-context learning) Transformer. It was pre-trained on hundreds of millions of synthetic datasets generated from structural causal models and evaluated across 51 TabArena datasets.

If it generalizes to your data, the payoff is real. The usual loop of feature-engineer, train a GBM, tune hyperparameters, retrain on drift collapses into one inference call with your data as context.


Why You Shouldn't Believe It Yet

Two sources flag the same gaps, independently.

DimensionWhat's claimedWhat's missing
Training dataHundreds of millions of synthetic SCM datasetsUnknown domain coverage / distribution
Evaluation51 TabArena datasetsNo head-to-head vs tuned CatBoost/XGBoost/LightGBM on the same holdouts
LicenseNon-commercialCannot deploy to production
Class limit10 classes maxBlocks most real multi-class tasks

The non-commercial license is a hard production blocker. The 10-class classification cap rules out many real tasks. And there is no direct comparison against a properly tuned gradient-boosted tree on the same datasets. The thing this doesn't tell you is whether it beats the baseline you already run, which is the only comparison that decides a migration.


The Right Experiment

Treat this as a one-day spike, not a migration plan:

  1. Grab 3-5 of your real tabular datasets spanning classification and regression
  2. Run TabFM zero-shot on the same holdout your GBM baselines use
  3. Measure both accuracy (AUC/RMSE) and inference latency, because zero-shot moves the cost from training to inference and you pay it on every call
  4. If it lands within ~2% on multiple datasets, you have a prototyping baseline that skips training entirely
  5. If not, you spent a day and confirmed GBMs still own structured data

The architectural idea, row plus column attention over tabular features, is worth understanding whether or not this specific model ships. It points at a future where per-dataset retraining becomes optional. TabFM may not be the version that gets you there.

TabFM is the first credible attempt to make 'train a model on your tabular data' feel as antiquated as 'write a parser for your text data' — but the non-commercial license means it stays in your research notebook, not your feature store.

What to do

  1. Benchmark TabFM zero-shot against your tuned GBM baselines on 3-5 real datasets this week, measuring AUC/RMSE and inference latency on identical holdouts

  2. Keep XGBoost/LightGBM as production incumbent — do NOT plan any migration given non-commercial license and 10-class limit

  3. Monitor for commercial-license tabular foundation models from Google or competitors this quarter

Chinese Model Provenance: The Compliance Risk Hiding in Your Model Registry

The Spread Is Faster Than You Think

A clean event-study design shows that following each major US export control since 2022, China-linked developers added 0.143 additional forks per repo-week versus 0.012 for US developers — an 11x gap. Qwen and DeepSeek now diffuse globally almost as fast as the best US frontier models. This isn't an emerging trend — it's established fact with rigorous measurement.

The compliance problem: Chinese-origin models are already appearing undisclosed in US patents. Chinese domestic science underlying US patent citations jumped from 1% in 2000 to 26% in 2025. If your team is using open-weight Chinese models without provenance tracking, and any output feeds into IP filings or regulated decisions, you have unmanaged legal exposure.


Both Directions Cut

Geopolitical risk isn't one-directional. Alibaba banned Claude Code and removed all Anthropic models from work machines — demonstrating that US tools can be yanked from Chinese orgs overnight. Simultaneously, Anthropic's Fable 5 was offline 19 days on export-control grounds, showing US tools can be yanked from non-US users by regulation. Both events happened this month.

The new models reinforcing this pattern:

ModelOriginTraining hardwareLicenseImplication
LongCat-2.0Meituan (China)50K domestic Chinese chips, zero NvidiaMITFull supply chain independent of US
GLM-5.2Z.ai (China)Huawei siliconMITNo export-control exposure
Qwen 3.6Alibaba (China)UndisclosedApache 2.0Already in production globally

The chip claims (50K domestic cards, zero Nvidia) are unverified and strategically motivated. But for your purposes, what matters is the runtime may be tuned for non-CUDA hardware — benchmark throughput on your own serving stack.


The Governance Gap

Most ML teams track model performance in their registry but not model provenance. You need to know:

  • Which models in your serving and eval stack originate from Chinese labs?
  • Are any outputs flowing into patent filings, regulated decisions, or government contracts?
  • Does your legal team know which weights are running?

This isn't about avoiding Chinese models — several are genuinely best-in-class and MIT-licensed. It's about having an audit trail before regulators or legal asks. The provenance field costs nothing to add; the lack of one could cost everything in a compliance review.

The Chinese open-weight models you dismissed last year now diffuse as fast as frontier US models — benchmark them on your own data, but track their provenance like your compliance depends on it, because it does.

What to do

  1. Add a provenance field (origin lab, training hardware, license, jurisdiction) to every model in your registry this sprint

  2. Add Qwen and DeepSeek latest checkpoints to your eval harness and benchmark against current baseline on your task distribution

  3. Flag any model outputs flowing into patent filings or regulated decisions for legal review of origin-model disclosure requirements

The bottom line

MIT-licensed frontier models (LongCat-2.0, GLM-5.2) and AMD serving at half the cost of Blackwell landed the same week Alibaba ripped Claude Code out of its engineering org overnight — self-hosted inference just stopped being a hedge and started being the rational default. Meanwhile, Google's TabFM threatens to make per-dataset GBM training feel as quaint as hand-written parsers, but the non-commercial license means it stays in your notebook until someone ships the production-grade version. The teams that win this quarter are the ones who benchmark these new options against their own data this week, not the ones who wait for someone else's leaderboard to tell them what's good.