Skip to content

Latest commit

 

History

History
127 lines (103 loc) · 7.34 KB

File metadata and controls

127 lines (103 loc) · 7.34 KB

Scoring and Rewards

PRISM scores one thing: a model's ability to learn from scratch, measured as online compression. For the production leaderboard and raw-weight path, the primary metric is a prequential bits-per-byte (bpb) score the challenge computes itself from a forced-init re-execution; a held-out delta breaks near-ties and an anti-memorization gap penalizes overfitting. Lower bits-per-byte is better on that path.

Official Comparison Protocol v1 ranking invert (+ scorecard v1.1 / Complete View). The offline Official Comparison surface (not this leaderboard) is the scientific miner architecture grade: multi-axis Official / Complete View with held-out / generalization as PRIMARY, prequential bpb as SECONDARY, plus polar honesty (TIE_POLAR / crown_allowed=false when short-gen vs long-ctx or other polar axes disagree). The additive multi-metric scorecard annex (scorecard_id=multimetric.v1.1) and Complete View publish the scientific vector. Do not apply “bpb primary” language from this page to Official Comparison headlines, and do not treat the multi-metric vector as emission ranking. Emission leaderboard remains bpb-primary on the path below. Challenge-owned prism_train_series.v1 time-flow (loss/bpb + mandatory grad_norm / clip when instrumented) is visibility + residual densify for sample-eff/stability only — never sole primary rank over held-out/bpb. When an Official grade pin requires the series and it is missing/corrupt, Official grade fail-closes (not silent PASS); miner dashboards remain non-authoritative. Prior LAB-GPU K=1 short-ctx wins are provisional only; REAL-PROVIDER TEE remains orthogonal and BLOCKED.

flowchart LR
    Loss[Single-pass online loss stream] --> Bpb[Prequential bits-per-byte]
    Bpb --> Final[final_score]
    Tie[Held-out delta on secret val - bounded tie-break] --> Final
    Gap[Train-vs-held-out gap - memorization penalty] --> Final
    Anomaly[Step-0 smuggled-weights anomaly multiplier] --> Final
    Final --> Board[Leaderboard ordered by final_score DESC]
Loading

Leaderboard Primary Metric: Prequential Bits-Per-Byte

During the re-execution, the challenge feeds the model fresh, single-pass batches from the locked train split and records its loss on each new batch before the optimizer updates on it. Single-pass data makes this online (predict-then-train) loss the prequential code-length by construction. The challenge integrates that code-length and normalizes it by the raw UTF-8 bytes covered:

bpb = (sum over consumed tokens of -log2 p(token)) / total_bytes_covered

Byte normalization makes the metric tokenizer-agnostic (any tokenizer compares like for like); integrating the whole curve defeats single-checkpoint gaming; scoring each token before training on it removes held-out leakage by construction; and forced random init makes smuggled pretrained weights inert.

final_score is a documented monotone-decreasing transform of bpb, so a lower bpb yields a better (higher) final_score and the leaderboard's ORDER BY final_score DESC ranks better learners first:

final_score = 1 / (1 + bpb)        # before tie-break, penalty, and anti-cheat multiplier

Compute Normalization, Not Wall-Clock

The score is compute-normalized: normalized by tokens consumed (and optionally estimated FLOPs), never by wall-clock time. A faster GPU or more GPUs cannot buy a better score; wall-clock is only a safety cap. This keeps scores fair across the 1-to-8 GPU range even though the scored run uses one physical GPU.

Leaderboard Tie-Breaker: Held-Out Delta Over Random Init

For near-equal bpb on the leaderboard, the challenge breaks the tie with the held-out delta on the secret val split:

heldout_delta = bpb(random-init twin on val) - bpb(trained model on val)

A larger improvement over the random-init twin is better. The held-out delta is folded into final_score as a bounded tie-break term: it can only reorder submissions whose bpb is within a small epsilon, so a strictly lower bpb is never ranked worse on the leaderboard primary axis. With no secret val split scored, the run is graded on bpb alone.

On the Official Comparison surface the ranking axes invert: held-out becomes the ranking primary and prequential bpb becomes secondary (Official Comparison Protocol v1). The multi-metric scorecard annex v1.1 (multimetric.v1.1) adds the A→Z scientific vector and mandatory TIE_POLAR when short held-out and long-context axes disagree beyond ε; it does not change this leaderboard path.

Anti-Memorization Gap

The challenge measures the train-vs-held-out gap (converged train bpb vs held-out val bpb on the same byte basis). An excessive gap flags memorization and multiplies a penalty into final_score, so a memorizer ranks below an equivalent non-memorizing learner. The comparison is basis-consistent so a benign learner is not falsely flagged.

Anomaly Zeroing

A step-0 / smuggled-weights anomaly (an impossibly low initial loss under forced random init) drives the anti-cheat multiplier to zero, so an anomalously good bpb is zeroed rather than rewarded. A degenerate run (zero coverage, non-finite, or out-of-band bpb) is failed rather than scored.

Leaderboard And Weights

The leaderboard ranks by final_score (bpb plus the folded-in held-out delta). Remaining ties break by earliest-commit-wins, then submission id, for a total, reproducible order. Each hotkey appears at most once, keeping its best submission. PRISM converts completed scores into raw hotkey weights and pushes them to the BASE master for aggregation. get_weights remains available for inventory/ compatibility. On-chain set_weights is validator-owned only; PRISM never writes weights on-chain.

Source Of Truth

Every number above is recomputed by the challenge from the challenge-authored prism_run_manifest.v2.json. Miner-reported metrics and miner-written manifests are ignored. The legacy raw-loss term and the v1-NAS architecture/training ownership pools are retired from the score.

Miner self-reports remain non-authoritative on both the leaderboard path and Official Comparison mode (including scorecard v1.1, Complete View, and train series). Challenge-owned prism_train_series.v1 may densify sample-efficiency / stability residuals and power time-flow charts but must not sole-rank mining packages over Official held-out or recomputed bpb axes, and must not substitute this leaderboard's bpb primary. REAL-PROVIDER TEE labels are orthogonal to ranking: see Official Comparison §17 train series telemetry, scorecard / TEE non-claims, and Security.

Reference Studies

  • Prequential / online coding — Dawid, 1984: score the integrated predict-then-train loss, not a final checkpoint.
  • Minimum description length — Rissanen, 1978: treat compression (code-length) as the learning signal.
  • Scaling laws — Kaplan et al., 2020: compare loss trajectories under matched compute.
  • Compute-optimal scaling — Hoffmann et al., 2022: normalize by tokens/compute so under- or over-trained regimes do not skew ranking.
  • Dataset provenance — Penedo et al., 2024 (The FineWeb Datasets): freeze the data revision and shards for reproducible official runs.