CoolFace
Modelpublic

GGUFGuy/hyperdex-most-undertrained-slm

sourceHugging Faceodc-byupdated 12d agoView on Hugging Face
0likes38downloads
Model Card

hyperdex-most-undertrained-slm

A 49,995,456-parameter decoder-only language model pre-trained from scratch on fineweb-edu, using the HyperDex Trainer Space.

Architecture

A standard LlamaForCausalLM decoder-only transformer — SiLU MLP, RMSNorm, rotary position embeddings, grouped-query attention, tied embeddings, no biases — scaled down in width and depth to fit the parameter budget.

Parameters49,995,456
Hidden size448
Layers12
Attention heads8 (KV: 2)
FFN size2669
Context length512
Vocab2,048 (custom BPE trained on fineweb-edu)

Training

Tokens seen524,288
Steps1
Tokens / step524,288
OptimizerAdamW(0.9, 0.95) wd=0.1 clip=1.0
LR schedulewarmup 2% + cosine to 10% (peak 6e-04)
Final loss8.0123 (ppl 3017.9)
Wall time0.2 min
Trained by@GGUFGuy

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer

tok = AutoTokenizer.from_pretrained("GGUFGuy/hyperdex-most-undertrained-slm")
model = AutoModelForCausalLM.from_pretrained("GGUFGuy/hyperdex-most-undertrained-slm")

ids = tok("The mitochondria is", return_tensors="pt").input_ids
print(tok.decode(model.generate(ids, max_new_tokens=60, do_sample=True,
                                temperature=0.8, top_k=50)[0]))

Caveats

This is a small-scale research artifact. At this parameter count and token budget the model learns word shapes, common collocations and a little syntax — it is not a useful assistant and its output is not factual. It exists to make "pre-train a transformer from scratch" something you can actually watch happen.