CoolFace
Modelpublic

1Covenant/Covenant-72B

sourceHugging Faceapache-2.0updated 7mo agoView on Hugging Face
52likes77downloads
Model Card

Covenant-72B

Model Overview

Covenant-72B is the largest permissionless collaboratively trained language model, trained entirely from scratch at the 72 billion parameter scale on 1.1 trillion tokens of English text.

[image]

For more details, see the technical report. This is a base model. See Covenant-72B-Chat for the instruction-tuned variant.

Covenant-72B was trained with 20+ globally distributed participants coordinated via decentralized infrastructure on the Bittensor blockchain. Unlike prior collaborative training efforts that use whitelisted compute, Covenant-72B is the first to achieve this scale with fully permissionless participation. Training used the SparseLoCo communication-efficient optimizer to reduce bandwidth requirements across distributed nodes.

Usage

python
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained(
    "1Covenant/Covenant-72B",
    torch_dtype=torch.bfloat16,
    device_map="auto",
)
tokenizer = AutoTokenizer.from_pretrained("1Covenant/Covenant-72B")

input_text = "The theory of general relativity"
input_ids = tokenizer.encode(input_text, return_tensors="pt").to(model.device)
output_ids = model.generate(input_ids, max_new_tokens=100)
print(tokenizer.decode(output_ids[0], skip_special_tokens=True))

Model Details

  • —Compute Participants: 20+ independent contributors on Bittensor
  • —Minimum Compute per Participant: 8×B200 or equivalent
  • —Model License: Apache 2.0

Technical Specifications

ParameterValue
Parameter Size72B
ArchitectureLLaMA-style (LlamaForCausalLM)
Number of Layers80
Number of Attention Heads64 (8 KV heads)
Hidden Size8192
Intermediate Size28672
Head Dimension128
Vocabulary Size262,144

Training Details:

  • —Dataset: DCLM-baseline
  • —Tokens: 1.1 Trillion
  • —Optimizer: SparseLoCo (communication-efficient optimizer)

Performance on Benchmarks

All results are 0-shot accnorm (%) unless noted._

ModelSizeTokensARC-CARC-EPIQAOBQAHellaSwagWinoGrande\*MMLU\*
Covenant-72B72B1.1T56.8380.9381.5644.0080.6175.8567.11
INTELLECT-110B1T44.8071.7677.3743.8070.2663.3032.69
Psyche Consilience40B1.2T31.1455.7776.1235.2063.6756.9924.23
LLM360 K2 ckpt_10865B420B45.7370.5480.9043.2078.2371.9050.01
LLM360 K265B1.4T53.7575.9782.5448.0082.8676.4065.51
LLaMA-2-7B7B2T45.0573.8278.7344.2076.1869.3841.73
LLaMA-2-70B70B2T57.4279.5582.5949.4084.3480.4365.63

\*WinoGrande uses acc; MMLU uses acc.