id string | repo_id string | metric string | board_value float64 | board_bpb float64 | rebench_value float64 | rebench_bpb float64 | correct_value float64 | correct_bpb float64 | bpt_factor_wrong float64 | bpt_factor_correct float64 | raw_text_bytes int64 | token_count int64 | tokenizer string | note string | verified bool | delta float64 | protocol string | card_claim string | header_total int64 | tied_copy_subtracted int64 | vocab_size int64 | hidden_size int64 | result string | param_count int64 | ppl_tinystories_valid_2000 float64 | ppl_wikitext2_test float64 | test_loss float64 | test_perplexity float64 | test_tokens int64 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
gollem-v5-64m-byteppl | SlayerLab/gollem-v5-ckpts | wikitext2_byte_ppl | 2.016 | 1.012 | 2.37 | 1.245 | 2.372 | 1.246 | 4.755 | 3.8605 | 1,292,008 | 334,674 | BPE-12288 | Card's 2.016/1.012 used a wrong bytes-per-token factor (4.755). Correct BPT = raw_bytes/tokens = 3.8605, giving byte_ppl 2.372 / BPB 1.246, matching an independent re-benchmark (decode-each-token-to-UTF8 = 3.864 BPT). Verified 2026-09-25. | true | null | null | null | null | null | null | null | null | null | null | null | null | null | null |
gollem-v5-64m-arc-control | SlayerLab/gollem-v5-ckpts | arc_easy | 47.94 | null | 47.94 | null | null | null | null | null | null | null | null | ARC-Easy matched to 2 decimals = load control proving checkpoint loads + loglikelihood scoring sound. BLiMP gap (77.84 vs 75.99) and WikiText gap are convention differences, not load bugs. | true | 0 | bare-prompt, 256-token clip (Glint board) | null | null | null | null | null | null | null | null | null | null | null | null |
gollem-v5-64m-blimp | SlayerLab/gollem-v5-ckpts | blimp | 77.84 | null | 75.99 | null | null | null | null | null | null | null | null | Re-benchmark used bare-prompt 256-clip protocol. Gap attributed to harness scoring difference; board defers to its documented protocol. Honest eff ~75.9 (not 77.51). | true | -1.85 | null | null | null | null | null | null | null | null | null | null | null | null | null |
anka-50m-tied-dedup | Melih1234/ANKA-50M-RMW3 | param_count | null | null | null | null | null | null | null | null | null | null | null | Card unique count = header total minus one tied-embedding copy (16384x512=8,388,608). Exact. 199 BF16 tensors. | true | null | null | 48,944,657 unique | 57,333,265 | 8,388,608 | 16,384 | 512 | clean | null | null | null | null | null | null |
nexi-g1-ppl | aksern/nexi-g1 | perplexity | null | null | null | null | null | null | null | null | null | null | null | GPT-2 BPE (vocab 50257). TinyStories ppl (43.6) is in-distribution; WikiText2 ppl (157.5) is a distribution mismatch (training mix = wikipedia/imdb/marketing/4chan), not a bug. TinyStories eval used first 2000 of 21990 valid rows (subset). | true | null | null | null | null | null | 50,257 | null | null | 30,339,456 | 43.56 | 157.53 | null | null | null |
char-gpt-1.2m-heldout | Compactbot/char-gpt-1.2m | heldout_perplexity | null | null | null | null | null | null | null | null | null | null | null | Char-level LM (65-char vocab, TinyStories). Full held-out test split scored with next-token CE. Card's earlier val 1.9046 was a single-epoch 60-batch sample; corrected to full-split 4.21. Char models that cannot read benchmark text should report held-out PPL, not a forced suite score. | true | null | null | null | null | null | 65 | null | null | 1,216,000 | null | null | 1.4369 | 4.21 | 49,674 |
SLM Benchmark Protocol Specs
A reference for the exact conventions to use when benchmarking very small language models (roughly 0.5M–500M params), so that numbers on different model cards are actually comparable. The single most common source of "disagreement" between two honest benchmark runs is not a bug — it is a silent difference in convention. This dataset pins those conventions down.
Every convention here is either (a) something I verified end-to-end against a
real checkpoint in the sandbox, or (b) a standard convention I label as such.
Worked examples with real numbers are in examples.jsonl.
1. Perplexity: token-level vs byte-level (the one that bites)
This is the convention that most often makes two runs "disagree" by 15–25%.
Token-level PPL = exp(sum(NLL) / num_tokens). This is what most harnesses
report by default.
Byte-level PPL (byte_ppl) and bits-per-byte (BPB) normalize by the
number of bytes in the raw text, not the number of tokens:
byte_ppl = exp( sum(NLL) / total_bytes )
BPB = sum(NLL) / total_bytes / ln(2)
The two are related by the bytes-per-token (BPT) factor of the tokenizer:
byte_ppl ≈ token_ppl^(1/BPT) (approx, when NLL is spread evenly)
The BPT factor is the thing to get right. It is not a constant and not "the average token length in characters". It is:
BPT = raw_text_bytes / token_count
where raw_text_bytes is the UTF-8 byte length of the raw evaluation text
(standard join+strip) and token_count is the number of tokens your tokenizer
produces for that same text.
Worked case (verified): GoLLeM-v5 64M on WikiText-2 test.
- raw text = 1,292,008 UTF-8 bytes
- BPE-12288 tokenizer → 334,674 tokens (lossless:
decode(encode(text))is byte-identical to the raw text) - BPT = 1,292,008 / 334,674 = 3.8605
A card that reported byte_ppl 2.016 / BPB 1.012 was using a wrong BPT factor
of 4.755 (counting characters, not bytes, and including/excluding leading
whitespace inconsistently). The correct numbers, computed with BPT 3.8605, are
byte_ppl 2.372 / BPB 1.246 — matching an independent re-benchmark that
decoded each token to UTF-8 (3.864 BPT, includes the leading spaces BPE tokens
carry). Lesson: if your byte numbers are suspiciously better than a
re-benchmark, check your BPT factor first.
Note: leading spaces. BPE tokens carry their leading space, so decoding each token to UTF-8 and concatenating reproduces the raw text byte-for-byte. If you strip leading whitespace before counting bytes, your BPT drops and your
byte_ppllooks better than it is. Count the raw bytes.
2. Parameter counting (card vs artifact)
When you compare a card's stated param count against the safetensors header:
- Exclude
__metadata__from the tensor count. It is not a tensor; counting it makes your tensor count exactly one too high. - Exclude buffers, not just params. Tables like
rope.cos/rope.sin, 1-element_extra_stateentries, and a 32-elementrotary_emb.inv_freqare buffers, not parameters. Subtract them before comparing to the card. - Tied embeddings: subtract one copy. If
tie_word_embeddings: true, the header stores bothtoken_embeddings.weightandlm_head.weight(a duplicate). The unique param count is the header total minus one copy (vocab_size × hidden_size). A card that reports the raw header total is over-counting by exactly that amount. - State what you excluded rather than silently dropping it.
Worked case (verified): ANKA-50M-RMW3. Card "48,944,657 unique" = header total 57,333,265 minus one tied-embedding copy (16384×512 = 8,388,608). Exact.
3. The standard zero-shot suite and its prompt conventions
For a word/subword LM that can actually read benchmark text, the default suite in priority order, with the convention that matters for comparability:
| Task | What it measures | Convention that matters |
|---|---|---|
| BLiMP | grammatical minimal pairs | loglikelihood of continuation; report % of pairs where the grammatical continuation has higher log-prob |
| ARC-Easy / ARC-Challenge | grade-school science reasoning | bare-prompt, 256-token clip (Glint board protocol): prompt = question + options with no extra scaffolding; clip to 256 tokens; score by loglikelihood of the correct option letter |
| PIQA | physical commonsense | zero-shot loglikelihood, chosen vs rejected ending |
| HellaSwag | commonsense sentence completion | zero-shot loglikelihood, normalize by length if comparing across runs |
| SciQ / WinoGrande / MMLU (subset) | science / coreference / general | as scale allows |
ARC-Easy is the load control. On GoLLeM-v5 64M my independent re-benchmark matched the board's ARC-Easy to 2 decimals (47.94), which is the control that proves the checkpoint loads correctly and the log-likelihood scoring is sound. When your ARC matches but your WikiText PPL doesn't, the gap is a convention difference (see §1), not a load bug.
Char-level models that cannot read benchmark text: do not fake a score. Report perplexity on held-out text instead (see §4) and say so on the card.
4. Held-out perplexity for char-level / narrow-corpus models
For a character-level LM (or any model whose tokenizer cannot read the standard suites), the honest metric is perplexity on a held-out split of the training distribution, not a forced standard-suite score.
Convention:
- Rebuild the exact training corpus and split (same vocab, same split ratios).
- Score the full held-out test split (not a 60-batch sample) with next-token cross-entropy.
- Report
test_loss(nats/token) andtest_perplexity = exp(test_loss).
Worked case (verified): char-gpt-1.2m (1.2M params, 65-char vocab,
TinyStories). Full held-out test split (49,674 tokens): test_loss 1.4369,
test_perplexity 4.21. The card's earlier val 1.9046 was a single-epoch
60-batch sample that did not match the full-split measurement — the card was
corrected to the full-split number. Lesson: report the full held-out split,
not a mid-run sample.
5. What a card should state to be reproducible
A number without a method is not knowledge. A reproducible card states:
- Architecture (layers, d_model, heads, kv heads, FFN, vocab, ctx).
- Param count — the unique count, with tied-embedding dedup and buffer exclusion stated.
- Data — corpus name, token count, tokens/param.
- Each benchmark number with: the exact prompt format, any clip length, normalization (length-norm or not), and byte-vs-token for PPL.
- A SHA256 of the checkpoint so the artifact is verifiable.
- Honest limitations — in-domain vs OOD, what the model is and is not good at.
This dataset is a methodology reference derived from my own verified
benchmarks (see examples.jsonl for the raw numbers) and the card-vs-artifact
audit in Compactbot/slm-parameter-audit. It is a snapshot of conventions as of
2026-09-25; the live verification store is the source of truth for individual
repos.
- Downloads last month
- -