CodeSoft/sorbet-25m
Sorbet-25M
Architecture graph
<a href="https://hfviewer.com/CodeSoft/sorbet-25m?utmsource=huggingface&utmmedium=embeddedmodelcard&utmcampaign=CodeSoftsorbet-25mcard" target="blank" rel="noopener"> <img src="https://hfviewer.com/api/card.svg?source=CodeSoft%2Fsorbet-25m&granularity=0" alt="Architecture graph for CodeSoft/sorbet-25m. Open in hfviewer" width="100%" /> </a>
From-scratch ~25M-parameter Qwen2-style decoder LM trained in under 4h on a single RTX 5060 Ti (16GB).
Architecture
Training data
0.8B-token weighted mix: fineweb-edu 70% / infiwebmath 10% / DCLM-baseline 20%, block-shuffled. ~3000 steps at 262,144 tok/step, cosine LR, 8-bit AdamW.
Benchmarks
Notes:
- ArithMark-3.0 (
AxiomicLabs/Arithmark-3.0) is the strongest relative result (+7.9 pts over random), consistent with the math share of the pretraining mix. - ARC-challenge raw accuracy sits below chance due to a length bias in unnormalized scores; acc_norm is the meaningful metric there.
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
repo = "CodeSoft/sorbet-25m"
model = AutoModelForCausalLM.from_pretrained(repo, dtype="bfloat16").to("cuda")
tok = AutoTokenizer.from_pretrained(repo, subfolder="tokenizer")
ids = tok("Once upon a time", return_tensors="pt").input_ids.cuda()
print(tok.decode(model.generate(ids, max_new_tokens=64)[0]))Limitations
Expect shallow world knowledge and weak performance on knowledge-heavy benchmarks due to the model's small parameter count and limited training budget.
License
Apache-2.0.
