[Pre-training Breakthrough] Covenant-72B: Decentralized Training is No Longer Just a Dream
Covenant-72B: Pre-Training a 72B LLM with Trustless Peers Over-the-Internet
Covenant-72B is a 72-billion parameter LLM pre-trained on 1.1 trillion tokens using a trustless, permissionless distributed network over the commodity internet. It utilizes the SparseLoCo optimizer and the Gauntlet validation mechanism to achieve performance competitive with centralized models like LLaMA-2-70B.
TL;DR
The monopoly of centralized GPU clusters on SOTA Large Language Models is being challenged. Covenant-72B is the first 70B-scale model pre-trained over the public internet using a vibrant, trustless network of peers. By utilizing aggressive gradient compression and a blockchain-backed validation protocol, the team achieved compute utilization of ~95% while matching the performance of Meta's LLaMA-2-70B.
The "Centralization Tax" in AI
Until now, the recipe for a 70B parameter model was simple but prohibitively expensive:
- Thousands of H100/B200 GPUs.
- Ultra-low latency interconnects.
- A single, high-security data center.
If you didn't have a whitelist of trusted partners or a massive bank account, you couldn't play. Decentralized training aims to fix this by pooling "commodity" compute—GPUs in basements and small labs worldwide. However, two "bosses" stood in the way: Bandwidth bottlenecks and The Trust Problem (adversarial participants).
Methodology: The Twin Pillars of Covenant
1. SparseLoCo: Breaking the Bandwidth Barrier
Communicating gradients for a 72B model usually requires massive throughput. Covenant utilizes SparseLoCo, a local-update distributed optimizer.
- How it works: Instead of communicating every step, peers perform local steps using AdamW.
- The "Secret Sauce": It applies Top-k sparsification (keeping only the most important updates) and 2-bit quantization.
- The Result: A 146x compression ratio. It turns a flood of data into a trickle that fits through standard home internet links.
In the SparseLoCo framework, error-feedback buffers are offloaded when not in use, maximizing GPU memory for the 72B model parameters.
2. Gauntlet: Training in a "Dark Forest"
In a permissionless network, anyone can join—including hackers or "lazy" peers who just copy others' work.
- Validation: The Gauntlet protocol acts as a judge. It evaluates "LossScore"—calculating how much the global loss drops when a specific peer's update is applied.
- Incentivization: Running on the Bittensor blockchain, the system rewards peers who contribute genuine, high-quality "pseudo-gradients."
Results: Better than "Centralized" Baselines?
Covenant-72B wasn't just "good for a distributed model"—it was objectively competitive.
| Benchmark | Covenant-72B (1.1T) | LLaMA-2-70B (2T) | LLM360 K2 (1.4T) |
|---|---|---|---|
| MMLU | 67.1 | 65.6 | 65.5 |
| ARC-C | 56.8 | 57.4 | 53.8 |
| ARC-E | 80.9 | 79.6 | 76.0 |
Covenant-72B achieves higher or comparable zero-shot accuracy across major benchmarks despite using nearly half the tokens of LLaMA-2.
Engineering Insights: Efficiency on Internet Links
One might expect high "idle time" in a distributed setup. However, the team reported 94.5% compute utilization. While the GPUs were training for 20 minutes, the communication of compressed gradients only took ~70 seconds. This "asynchronous-like" efficiency is the key to making global scaling practical.
Participation remained stable (averaging 16.9 contributing peers) even with the inherent volatility of a trustless internet network.
Conclusion & Perspective
Covenant-72B is more than a model; it's a proof of concept for the Democratization of AI. By proving that we don't need a "permissioned whitelist" to build 70B+ models, this research opens the door for a future where foundation models are built by the global community, independent of centralized cloud providers.
The success of the post-training (Chat) version, which showed particularly strong mathematical reasoning (MATH score 26.3), suggests that decentralized models can capture high-quality instruction-following capabilities just as well as their siloed counterparts.
