Open Source After the Frontier Gate
The US walled off frontier AI. Five days later, an open-weight model beat GPT-5.5. The post-training pipeline is where open-source AI compounds its advantage.
Why This Matters
On June 12, 2026, a Friday, the US Commerce Department ordered Anthropic to suspend all access to its Fable 5 and Mythos 5 models by any foreign national, anywhere in the world — including foreign nationals working inside the United States. The directive landed at 5:21 p.m. Eastern. Both models were killed globally within hours, three days after launch.
The surface story was national security. White House AI adviser David Sacks claimed Anthropic refused to fix a vulnerability that exposed cybersecurity capabilities from the Mythos lineage. Amazon CEO Andy Jassy reportedly told Treasury officials that researchers used Fable 5 to obtain information usable in cyberattacks. Forbes and Deutsche Welle both reported suspicions that a China-linked group had accessed Mythos, raising the risk of reverse engineering or distillation.
But the deeper signal is simpler: frontier AI now has a citizenship check. If you are not American, the most capable closed models are not available to you. That rewrites the calculus for every developer, startup, and research lab outside the United States. The old question was "can open models catch up." That question is now beside the point. The real question is: how fast can open models become good enough that the citizenship gate stops mattering?
Five days after the ban, on June 17, Zhipu AI released GLM-5.2. Open weights. One million token context window. On PostTrainBench — where each agent gets an H100 and is evaluated by how much it can improve small models through post-training — GLM-5.2 beat both Claude Opus 4.7 and GPT-5.5, landing at number two overall behind only Opus 4.8. On the Arena AI leaderboard for frontend coding, with Fable 5 excluded since it was pulled, GLM-5.2 ranked number one among available models. Vercel CEO Guillermo Rauch posted "this changes things." Business Insider ran the headline.
Five days. That is how long it took between the US government walling off the frontier and the open-source community shipping a model that beat GPT-5.5.
Prerequisites
What you should already know
- Familiarity with what a large language model is and how it is used
- Basic understanding of the LLM training pipeline: pre-training (next-token prediction on internet-scale data) versus post-training (instruction tuning, preference alignment, reasoning RL)
- For the full technical breakdown of SFT, RLHF, DPO, and GRPO, see the How LLMs Are Created article
- For the strategic case for open-weight models, see Why Open-Source LLMs Matter
Core Idea
The June 12 export ban does not invent the open-source push. It hits the accelerator on something already moving fast. The post-training pipeline — the techniques that turn a raw base model into a useful assistant — already gives the open-source community structural advantages that closed labs cannot easily match. GRPO eliminates the critic model, cutting memory requirements roughly in half and making post-training distributable across independent nodes in a way that pre-training never was. Verifier-based rewards compound as public infrastructure: each published verifier lowers the cost of the next training run. And the GLM-5.2 demonstration shows that these advantages are not theoretical. They are shipping, on domestic silicon the US does not control, faster than the policy conversation can keep up.
The open-source path is no longer a backup plan. It is becoming the main road — not because open models will out-compute the frontier labs, but because the post-training pipeline rewards iteration speed over total FLOPs, and iteration speed is where a distributed community has an edge that no single lab, however well-funded, can match.
How It Actually Works
The Post-training Evolution: Why GRPO Is the Inflection Point
When a base model finishes pre-training, it knows a lot but does not know how to be useful. It can complete sentences, but it cannot reliably follow instructions, refuse harmful requests, or reason step by step through hard problems. That all comes from post-training. And the techniques used here are what separate a research artifact from something people actually want to use.
The simplest approach is supervised finetuning (SFT). You show the model examples of good responses and it learns to imitate them. Cheap, fast, gets you most of the way there. But imitation has a ceiling — the model can only reproduce patterns it has seen.
The next step up is RLHF, reinforcement learning from human feedback. You train a separate reward model on human preference data, then use that reward model to guide the main model via an algorithm called PPO. This works — it is how ChatGPT was originally trained — but it is expensive. You need to keep four models in memory simultaneously: the policy model, a reference model, a reward model, and a critic model. The engineering overhead is substantial.
Then came DPO, Direct Preference Optimization (Rafailov et al., Stanford, 2023). DPO eliminates the reward model by treating alignment as a straightforward classification problem. You have pairs of responses — one preferred, one rejected — and you directly optimize the model to increase the probability of the preferred response relative to the rejected one. No reward model, no PPO, no critic. This made alignment accessible to anyone with a GPU. But DPO has a fundamental limitation: it is an offline method. You train once on a static dataset. The model never explores, tries something new, gets feedback, and adjusts.
Which brings us to GRPO, Group Relative Policy Optimization. This is the algorithm DeepSeek used for R1, and it is where the open-source community has a genuine technical advantage that most observers have not fully processed.
GRPO was first introduced in the DeepSeekMath paper, then became the core training method for DeepSeek-R1-Zero and R1. The key insight: you do not need a separate critic model if you can compare a model's outputs to each other. For each prompt, you generate a group of responses — say, 16 or 64. You score each one using a verifiable reward function (did the math answer match? did the code pass the unit tests?). You compute the average reward across the group. Then the advantage for each response is simply its reward minus the group average. Responses better than average get reinforced. Responses worse than average get suppressed.
graph LR
A["Prompt"] --> B["Generate Group<br/>of N Responses"]
B --> C["Score Each Response<br/>with Verifiable Reward"]
C --> D["Compute Group<br/>Average Reward"]
D --> E["Advantage = Reward<br/>− Group Average"]
E --> F["Reinforce Above-Average<br/>Suppress Below-Average"]
F -->|"Next Iteration"| B
style A fill:#1a1a2e,stroke:#6366f1,color:#e0e0ff
style B fill:#1a1a2e,stroke:#6366f1,color:#e0e0ff
style C fill:#1a1a2e,stroke:#22c55e,color:#e0e0ff
style D fill:#1a1a2e,stroke:#22c55e,color:#e0e0ff
style E fill:#1a1a2e,stroke:#f59e0b,color:#e0e0ff
style F fill:#1a1a2e,stroke:#ef4444,color:#e0e0ff
This eliminates the critic model entirely. For large language models where the policy itself is hundreds of gigabytes, cutting the critic roughly halves the memory requirement. That is not a small optimization — it is the difference between needing a cluster and running on a few nodes.
The other thing GRPO does is enable exploration. Unlike DPO, which trains on fixed preference data, GRPO generates fresh responses each iteration, scores them, and updates. The model tries things. Some work, some do not. The ones that work get reinforced. Over thousands of iterations, complex behaviors like self-reflection and strategy switching emerge without being explicitly taught. The R1 paper calls these "aha moments."
For the full technical breakdown of how SFT, RLHF, DPO, and GRPO work — including the mathematics, the training infrastructure, and concrete examples of how each stage transforms model behavior — see the How LLMs Are Created article. The rest of this article focuses on what those techniques mean for the post-ban strategic landscape.
Why GRPO Changes the Distribution Math
Here is the part that is genuinely important and under-discussed. GRPO was designed for a world where compute is constrained. DeepSeek built it because they could not just throw more GPUs at the problem. The group-based advantage calculation means you can distribute the generation of responses across many smaller nodes. You do not need them tightly coupled with fast interconnects. Each node generates its batch, scores it locally using the same verifier, and sends back gradients. The coordination overhead is minimal.
This property matters for the open-source community because it means GRPO-based post-training is distributable across independent compute in a way that pre-training never was. Pre-training requires thousands of GPUs tightly coupled with InfiniBand or NVLink — the model is too large to fit on one GPU, and every forward and backward pass requires constant communication between nodes. Post-training with GRPO does not require this. Each contributor can run independently, and only the gradients — not the full model activations — need to be aggregated.
The Decentralized Post-training Network
Right now, every open-source lab trains in isolation. DeepSeek runs their GRPO pipeline on their cluster. Qwen runs theirs on Alibaba's cloud. Zhipu runs theirs. None of the improved weights, reasoning traces, or verifier designs feed back into a shared pool. Each team builds everything from scratch. The fragmentation is the bottleneck — not the algorithms, and not even the compute.
A shared protocol changes the picture.
graph TB
subgraph Registry["Verifier Registry (Public)"]
V1["Math Verifier"]
V2["Code Verifier"]
V3["Proof Verifier"]
V4["Chemistry Verifier"]
end
subgraph Contributors["Independent GPU Contributors"]
C1["Node A<br/>GRPO Iterations"]
C2["Node B<br/>GRPO Iterations"]
C3["Node C<br/>GRPO Iterations"]
end
COORD["Coordinator<br/>Prompt Distribution<br/>Gradient Aggregation"]
subgraph Outputs["Public Outputs"]
O1["Improved Weights<br/>(Open Release)"]
O2["Reasoning Traces<br/>(Open Dataset)"]
O3["Expert Modules<br/>(Public Registry)"]
end
Registry -->|"Verifiers"| COORD
COORD -->|"Batches of Prompts"| Contributors
Contributors -->|"Gradients"| COORD
COORD --> O1
COORD --> O2
COORD --> O3
O1 -->|"Distillation"| Small["Small Distilled Models<br/>Consumer Hardware"]
style Registry fill:#1a1a2e,stroke:#6366f1,color:#e0e0ff
style Contributors fill:#1a1a2e,stroke:#22c55e,color:#e0e0ff
style COORD fill:#1a1a2e,stroke:#f59e0b,color:#e0e0ff
style Outputs fill:#1a1a2e,stroke:#ef4444,color:#e0e0ff
style Small fill:#1a1a2e,stroke:#a855f7,color:#e0e0ff
Anyone can submit a verifier — a math checker, a code evaluation suite, a formal proof validator. These go into a public registry. Anyone can contribute GPU hours. When you contribute, you receive batches of prompts, run GRPO iterations on an open base model (DeepSeek V4, Qwen, GLM-5.2, whichever), and submit gradients back. The coordinator aggregates contributions from hundreds of independent nodes and publishes the improved weights openly. The reasoning traces generated during training go into open datasets so smaller models can distill from them. Expert modules discovered during training get catalogued in a public registry so other MoE models can potentially use them.
This is not SETI@home. The compute does something cumulative. Each GRPO iteration produces slightly better weights, and those weights become the starting point for the next contributor. The model gets better the more people participate.
Would this beat a dedicated cluster of 10,000 H100s? Probably not, for raw throughput. But it does not need to. The frontier labs can run more total FLOPs. What they cannot do is run more independent experiments. A decentralized network with a thousand contributors, each trying different verifier configurations, different reward functions, different base models, different expert modules, would explore the post-training design space faster than any single lab. Speed of experimentation, not total FLOPs, is what wins in post-training.
And the verifier registry is the part that makes the whole thing compounding. If DeepSeek trains a model that is great at math, the community benefits from the weights but not from the verifier they used to train it. If instead the verifier is published and reusable, then the next team does not need to rebuild math verification from scratch. They can focus on building a verifier for a new domain — chemistry, legal reasoning, medical diagnosis — and their training runs benefit from all previously published verifiers. The verification infrastructure grows as a public good.
The pieces are already scattered across the community. DeepSeek published their GRPO method. Qwen published their training recipes. Hugging Face's TRL library supports GRPO directly. The open base models exist and are freely available. What is missing is the coordination layer that connects these pieces into a single iterative improvement loop.
The compute side is the hardest part, and it should not be minimized. Post-training a model the size of DeepSeek V4 or GLM-5.2 still requires serious hardware per node, even with GRPO's efficiency. A 685 billion parameter MoE model, even with only 37 billion active parameters, needs hundreds of gigabytes of GPU memory just for inference. You cannot run this on a gaming laptop.
But you do not need every contributor to run the full model. The distillation pipeline means progress on large models cascades down. If a decentralized network improves a large reasoning model, those improvements can be distilled into smaller models that run on consumer hardware. The 7 billion parameter distilled models from DeepSeek R1 already show this works. A community that collectively improves the large model benefits everyone who uses the small distilled versions.
GLM-5.2: The Five-Day Rebuttal
The June 17 release of GLM-5.2 is worth examining in detail because it demonstrates every advantage discussed above in a single, concrete case.
GLM-5.2 did not come from nowhere. Its predecessor, GLM-5, had already hit 77.8% on SWE-bench Verified — within striking distance of Claude Opus 4.6 (80.8%) and ahead of GPT-5.2 (80.0%). But GLM-5.2 jumped further: it beat both Claude Opus 4.7 and GPT-5.5 on PostTrainBench, a benchmark specifically designed to measure how well a model can improve other models through post-training. This is not a narrow coding benchmark. It is a meta-benchmark that tests whether the model understands training well enough to teach smaller models effectively.
The hardware story is just as significant. GLM-5 was trained entirely on Huawei Ascend chips — not NVIDIA GPUs, not smuggled H200s through Singapore. Domestic Chinese silicon. The chip ban was supposed to slow things down. What it actually did was force Chinese labs to optimize for the hardware they had. The result is models that are competitive with the frontier while running on chips the US does not control.
The one million token context window in GLM-5.2 enables long-horizon reasoning tasks that were previously exclusive to closed models like Gemini. Combined with the post-training benchmark results, the release made a statement that is hard to misinterpret: the open-weight ecosystem is now capable of producing models that compete with the frontier on the frontier's own terms — reasoning quality, context length, and training methodology — without access to US-controlled silicon.
Five days after the ban. That is the timeline.
Common Misconceptions
Watch out for these
- "Open models match benchmarks, so they are equal to closed models." The benchmarks themselves are part of the problem. When GLM-5.2 scores within a few points of GPT-5.5 on SWE-bench Verified, the numbers suggest parity. But anyone who has used both models for real work knows the closed model still feels smoother — it hallucinates less, follows complicated instructions more reliably, and the refusals make sense instead of blocking harmless requests. Benchmarks measure narrow task completion. They do not capture the texture of reliability that comes from thousands of refinement cycles on failure cases, professional annotation teams, and integrated system engineering around the raw model.
- "The compute gap is closing fast." Compute scale still separates the frontier labs from everyone else. OpenAI, Anthropic, and DeepMind can run repeated full-scale training cycles, systematic ablations, and alignment experiments at a volume that open projects cannot match. CSIS noted in early 2025 that while DeepSeek showed real innovation, some of it was implementing techniques US labs already knew. The compute gap is not closing fast — but training methodology matters more than raw FLOPs for post-training specifically, and that shift favors the side with more published research and more distributed experimentation.
- "Decentralized training is just SETI@home for AI." SETI@home distributes independent work units — each node crunches a different chunk of radio telescope data, and the results do not depend on each other. A decentralized post-training network is cumulative: each GRPO iteration produces slightly better weights that become the starting point for the next contributor. The model improves the more people participate. The distinction is between embarrassingly parallel work and iterative improvement.
- "Synthetic data will close the proprietary data gap entirely." The loss-to-loss scaling work (Mayilvahanan et al., 2026) confirms that data quality is the dominant factor in model performance. Closed labs train on corpora that cannot be legally shared — search logs, enterprise documents, paid content. Synthetic data pipelines and shared reasoning traces chip away at this advantage, but they do not eliminate it. The data gap is structural, and it will narrow but not close.
- "Safety is an unsolvable problem for decentralized training." A decentralized network introduces real challenges: how do you prevent bad actors from poisoning the training process? How do you verify that contributed gradients are legitimate and not adversarial? These are solvable problems — gradient auditing, trusted verifier whitelists, reputation systems — but they require serious engineering attention and are not solved yet. The closed labs spend real money on evaluation pipelines, red teaming, and safety research. Matching that investment through coordination is possible but not automatic.
Key Takeaways
- The June 12 export ban rewrites the calculus for open-source AI. Frontier models now carry a citizenship check. For developers outside the US, building on open-weight models is no longer a philosophical preference — it is the only path that guarantees continuity of access.
- GRPO is the inflection point for distributed post-training. By eliminating the critic model and enabling group-relative advantage calculation, GRPO cuts memory requirements roughly in half and makes post-training distributable across independent nodes — something pre-training structurally cannot do.
- Post-training, not pre-training, is where the open-source community has a genuine structural advantage. Pre-training requires tightly coupled GPU clusters and massive capital. Post-training with GRPO rewards iteration speed and experimentation volume — areas where a distributed community can outperform even well-funded labs.
- A decentralized post-training network is technically feasible with existing pieces. GRPO, open base models, published verifiers, and the TRL library already exist. What is missing is the coordination layer — a shared protocol for verifier submission, gradient aggregation, and weight publishing.
- GLM-5.2 demonstrates the speed of the open-weight ecosystem. Released five days after the ban, trained on domestic Chinese silicon, it beat GPT-5.5 on post-training benchmarks. The timeline between major open-weight releases keeps compressing.
- The benchmark gap is not the reliability gap. Open models now score competitively on public benchmarks, but closed models still feel more reliable in practice due to more refinement cycles, higher-quality human annotation data, and integrated system engineering. Closing this gap requires collective investment, not just better algorithms.
- The chip ban backfired in one specific way. By cutting off access to NVIDIA hardware, it forced Chinese labs to optimize for domestic silicon. The result is models that are competitive while running on chips the US does not control — a strategic outcome opposite to the ban's intent.
Open Questions
Where the field is uncertain
- Will the open-source community actually coordinate? The technical path is clearer than ever. DeepSeek, Alibaba's Qwen team, Zhipu, Moonshot AI, and MiniMax each publish weights and papers. None coordinate on shared infrastructure. The ban may provide a shared reason to coordinate that was not there before — but fragmentation has been the default for years, and coordination requires active engineering and governance, not just goodwill.
- Can synthetic data close the proprietary data gap? The loss-to-loss scaling work says data quality dominates model performance. Closed labs train on proprietary corpora. Synthetic data pipelines help, but whether they can fully substitute for real-world proprietary data at scale is unknown.
- How do you secure a decentralized training network? Gradient auditing, trusted verifier whitelists, and reputation systems can address adversarial poisoning in principle, but none of these have been deployed at the scale a community training run would require. The security engineering is a genuinely hard open problem.
- Does the distillation pipeline create a dependency trap? If the community relies on a few large labs to produce the large models that get distilled into smaller ones, the decentralization vision only partially materializes. True decentralization requires that multiple independent groups can train the large models — not just distill from them.
References
- Allen, G. C. (2025, April). DeepSeek, Huawei, export controls, and the future of the U.S.-China AI race. Center for Strategic and International Studies (CSIS). https://www.csis.org/analysis/deepseek-huawei-export-controls-and-future-us-china-ai-race
- Bian, S., Yu, T., Venkataraman, S., & Park, Y. (2026). Scaling laws meet model architecture: Toward inference-efficient LLMs. In Proceedings of ICLR 2026. arXiv:2510.18245
- Brookings Institution. (2026). Ball game's over — the US is out of the AI chip market in China. Brookings. https://www.brookings.edu/articles/ball-games-over-the-us-is-out-of-the-ai-chip-market-in-china
- Capoot, A. (2026, June 12). Anthropic disables access to Fable 5 and Mythos 5 models to comply with U.S. government directive. CNBC. https://www.cnbc.com/2026/06/12/anthropic-disables-access-to-fable-5-and-mythos-5-to-comply-with-government-directive.html
- DeepSeek-AI. (2025). DeepSeek-R1: Incentivizing reasoning capability in LLMs via reinforcement learning. Nature. arXiv:2501.12948
- GLM Team, Zhipu AI. (2024). ChatGLM: A family of large language models from GLM-130B to GLM-4 all tools. arXiv:2406.12793
- LMSYS. (2026). Chatbot Arena. https://lmarena.ai/
- Mayilvahanan, P., Jeblick, K., Shanmugam, D., Cottrill, A., & Rühle, F. (2026). LLMs on the line: Data determines loss-to-loss scaling laws. arXiv:2502.12120
- PostTrainBench. (2026). PostTrainBench. https://posttrainbench.com/
- Qin, Z., Dong, Q., Zhang, X., & Dong, L. (2025). Scaling laws of synthetic data for language models. arXiv:2503.19551
- Qwen Team. (2025). Qwen3 technical report. arXiv:2505.09388
- Qwen Team. (2026). Qwen3.5-Omni technical report. arXiv:2604.15804
- Rafailov, R., Sharma, A., Mitchell, E., Ermon, S., Manning, C. D., & Finn, C. (2023). Direct preference optimization: Your language model is secretly a reward model. In NeurIPS 2023. arXiv:2305.18290
- Setlur, A., Rajaraman, N., Levine, S., & Kumar, A. (2025). Scaling test-time compute without verification or RL is suboptimal. In Proceedings of ICML 2025. https://icml.cc/virtual/2025/poster/44733
- Shazeer, N., Mirhoseini, A., Maziarz, K., Davis, A., Le, Q., Hinton, G., & Dean, J. (2017). Outrageously large neural networks: The sparsely-gated mixture-of-experts layer. In Proceedings of ICLR 2017. arXiv:1701.06538
- Sircar, A. (2026, June 16). Anthropic disabled Fable 5 and Mythos 5 after a U.S. export-control order — Here's what happened. Forbes. https://www.forbes.com/sites/anishasircar/2026/06/16/anthropic-disabled-fable-5-and-mythos-5-after-a-us-export-control-order-heres-what-happened
- Su, Z., Li, Q., Zhang, H., Ye, W., Xue, Q., Qian, Y., Xie, Y., Wong, N., & Yuan, K. (2025). Unveiling super experts in mixture-of-experts large language models. In Proceedings of ICLR 2026. arXiv:2507.23279
- U.S. Department of Commerce, Bureau of Industry and Security. (2025, January 15). Export controls on advanced computing items and artificial intelligence model weights. Federal Register. https://datamatters.sidley.com/2025/01/21/new-u-s-export-controls-on-advanced-computing-items-and-artificial-intelligence-model-weights-seven-key-takeaways
- Z.ai. (2026, June 17). GLM-5.2: Built for long-horizon tasks. Z.ai Blog. https://z.ai/blog/glm-5.2
Related
How LLMs Are Created — Pre-training, Post-training, and RL
How LLMs are built: from internet-scale pre-training through SFT, RLHF, DPO, GRPO, and Constitutional AI.
Why Open-Source LLMs Matter
A first-principles breakdown of why open-source language models are reshaping AI — from cost and transparency to sovereignty, competition, and the now-closed performance gap.
What the Sakana Fugu Paper Actually Says — Orchestration as a New Scaling Axis
Sakana Fugu is a learned orchestrator that coordinates frontier LLMs (Claude, GPT, Gemini) to beat each one at its own game. A breakdown of the paper, its two variants, and why orchestration may be AI's third scaling axis.