[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

Summary
Problem
Method
Results
Takeaways
Abstract

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:

  1. Thousands of H100/B200 GPUs.
  2. Ultra-low latency interconnects.
  3. 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.

System Architecture 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.

BenchmarkCovenant-72B (1.1T)LLaMA-2-70B (2T)LLM360 K2 (1.4T)
MMLU67.165.665.5
ARC-C56.857.453.8
ARC-E80.979.676.0

Performance Comparison 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 Dynamics 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.

Find Similar Papers

Try Our Examples

  • Search for the latest papers on SparseLoCo and DiLoCo to compare their Pareto-optimal trade-offs in low-bandwidth distributed training.
  • Which paper first introduced the Gauntlet mechanism for incentivizing permissionless learning, and how does its LossScore differ from traditional Byzantine-robust aggregation?
  • Find recent research exploring the application of decentralized training protocols to Mixture-of-Experts (MoE) architectures in over-the-internet settings.
Contents
[Pre-training Breakthrough] Covenant-72B: Decentralized Training is No Longer Just a Dream
1. TL;DR
2. The "Centralization Tax" in AI
3. Methodology: The Twin Pillars of Covenant
3.1. 1. SparseLoCo: Breaking the Bandwidth Barrier
3.2. 2. Gauntlet: Training in a "Dark Forest"
4. Results: Better than "Centralized" Baselines?
5. Engineering Insights: Efficiency on Internet Links
6. Conclusion & Perspective