GPT-1900 Drafts
Collection
Experimental and intermediate GPT-1900 checkpoints. Working artifacts, not for general use. • 49 items • Updated
A 3.3B parameter GPT-style language model trained on ~8B tokens of pre-1900 English text (11x data:param ratio).
model_010507.pt # Model weights
meta_010507.json # Training config and metadata
optim_010507_rank*.pt # Optimizer state shards (for resuming training)
tokenizer/ # BPE tokenizer (tiktoken format) + token byte counts
nanochat/ # Source code to load and run the model
import torch
from nanochat.gpt import GPT, GPTConfig
from nanochat.tokenizer import RustBPETokenizer
# Load tokenizer
tokenizer = RustBPETokenizer.from_directory("tokenizer")
# Load model
import json
with open("meta_010507.json") as f:
meta = json.load(f)
config = GPTConfig(**meta["model_config"])
with torch.device("meta"):
model = GPT(config)
model.to_empty(device="cuda")
model.init_weights()
state_dict = torch.load("model_010507.pt", map_location="cuda")
state_dict = {k.removeprefix("_orig_mod."): v for k, v in state_dict.items()}
model.load_state_dict(state_dict, strict=True, assign=True)
model.eval()
# Generate
bos = tokenizer.get_bos_token_id()
tokens = tokenizer.encode("It was a dark and stormy night", prepend=bos)
with torch.amp.autocast(device_type="cuda", dtype=torch.bfloat16):
for token in model.generate(tokens, max_tokens=100, temperature=0.8):
print(tokenizer.decode([token]), end="", flush=True)
torch>=2.9
tiktoken
rustbpe
Trained with the nanochat framework on H100 GPUs.
To resume training, load the optimizer shards (optim_010507_rank*.pt) — one per rank.