Views
No views yet
1{
2 "schema_version": "3.0",
3
4 "model": {
5 "id": "<model repository>",
6 "revision": "<immutable model revision>"
7 },
8
9 "catalog_revision": "<fixed codec-catalog revision>",
10
11 "reference": {
12 "id": "sf-reference-v3",
13 "ppl": "<measured reference perplexity>"
14 },
15
16 "dense": {
17 "tensor_ids": ["<tensor ID>"],
18 "numel": ["<element count>"],
19 "direct_kl": ["<tensor × catalog-codec damage>"],
20 "folded_kl": ["<tensor × catalog-codec damage>"],
21 "fold_below_bpw": 2.0
22 },
23
24 "experts": {
25 "layer_ids": ["<MoE layer ID>"],
26 "n_experts": "<expert count>",
27 "kept_counts": [
28 256, 240, 230, 218, 205,
29 192, 179, 166, 154, 141,
30 128, 115, 102, 90, 77,
31 64, 51, 38, 26, 16
32 ],
33 "measured_codecs": ["ib6p8", "ib9p4", "ib16p4"],
34 "cells": ["<layer × retained-count × measured-codec log-damage>"],
35
36 "interpolation": {
37 "phi": ["<one value per catalog codec>"],
38 "valid_between": ["ib6p8", "ib16p4"]
39 },
40
41 "routing_mass_prior": ["<layer × expert normalized routing mass>"]
42 },
43
44 "kv": {
45 "layers": {
46 "<layer ID>": {
47 "mode": "separate_kv",
48 "k": {
49 "variance": "<measured value>",
50 "beta": "<measured value>",
51 "lowest_passing_codec": "<codec or null>"
52 },
53 "v": {
54 "variance": "<measured value>",
55 "beta": "<measured value>",
56 "lowest_passing_codec": "<codec or null>"
57 },
58 "gamma": "<measured value>"
59 },
60
61 "<shared-KV layer ID>": {
62 "mode": "shared_kv",
63 "shared": {
64 "variance": "<measured value>",
65 "beta": "<measured value>",
66 "lowest_passing_codec": "<codec or null>"
67 }
68 }
69 }
70 }
71}"experts": nullsf-reference-v3 is defined normatively as reference R: ib10p2 routed
experts, FP16 dense weights, and FP16 KV. Components absent from an architecture
are omitted. The map stores only the identifier and that model's measured
reference perplexity.tensor_ids and numel.catalog_revision.folded_kl below 2 bpw and direct_kl at or above 2 bpw.cells is the measured layer × retained-count × three-anchor surface.routing_mass_prior records the calibration identity ordering and seeds
residency until live observations are sufficient. Routing adaptation changes
identities only; retained-count and codec prices remain fixed.1range(t) = direct_kl[t, ib6p8] - direct_kl[t, ib16p4]
2
3big_range = dense rows whose range is strictly greater than the median range
4 across all rows in this map
5
6phi(c) = median over big_range of
7 (direct_kl[t,c] - direct_kl[t,ib16p4]) / range(t)
8
9estimate(l,K,c) =
10 cell(l,K,ib16p4)
11 + (cell(l,K,ib6p8) - cell(l,K,ib16p4)) * phi(c)phi follows the pinned catalog order.phi(ib6p8) = 1.0 and phi(ib16p4) = 0.0 exactly.ib9p4 always uses its literal measured cell.valid_between have an interpolated expert quality
action. Codecs outside it require another measured anchor.phi from dense.direct_kl and requires agreement
within an absolute tolerance of 1e-12, then requires the two endpoints to
be exactly 1 and 0.1distortion(c) = (1 - kappa(c)) / kappa(c)
2
3damage(l,s,c) = beta(l,s) * variance(l,s)
4 * delta_distortion(c)
5
6joint_damage(l) = gamma(l) * (damage_K(l) + damage_V(l))shared record and no gamma.lowest_passing_codec is inclusive. A codec is legal exactly when its
catalog distortion is no greater than the named codec's distortion.null means that no measured cliff floor applies.predicted_ppl = reference.ppl * exp(total_damage)